mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
FIX: Show tag count for existing tags (#9892)
* FIX: Show tag count for existing tags * Add test
This commit is contained in:
parent
45c399f0d7
commit
dd85d44dda
|
@ -45,7 +45,7 @@ export default ComboBox.extend(TagsMixin, {
|
|||
},
|
||||
|
||||
modifyComponentForRow(collection, item) {
|
||||
if (this.getValue(item) === this.selectKit.filter) {
|
||||
if (this.getValue(item) === this.selectKit.filter && !item.count) {
|
||||
return "select-kit/select-kit-row";
|
||||
}
|
||||
|
||||
|
|
|
@ -31,7 +31,20 @@ componentTest("create a tag", {
|
|||
assert.equal(this.subject.header().value(), "foo,bar");
|
||||
|
||||
await this.subject.expand();
|
||||
await this.subject.fillInFilter("monkey");
|
||||
await this.subject.fillInFilter("mon");
|
||||
assert.equal(
|
||||
find(".select-kit-row")
|
||||
.text()
|
||||
.trim(),
|
||||
"monkey x1"
|
||||
);
|
||||
await this.subject.fillInFilter("key");
|
||||
assert.equal(
|
||||
find(".select-kit-row")
|
||||
.text()
|
||||
.trim(),
|
||||
"monkey x1"
|
||||
);
|
||||
await this.subject.keyboard("enter");
|
||||
|
||||
assert.equal(this.subject.header().value(), "foo,bar,monkey");
|
||||
|
|
Loading…
Reference in New Issue
Block a user