mirror of
https://github.com/discourse/discourse.git
synced 2025-02-20 18:58:10 +00:00
FIX: uses no tags label for tag-drop header (#7438)
This commit is contained in:
parent
6d77156a94
commit
7cbc4c1e46
@ -45,7 +45,11 @@ export default ComboBoxComponent.extend(TagsMixin, {
|
||||
|
||||
if (!content.value) {
|
||||
if (this.get("tagId")) {
|
||||
content.title = this.get("tagId");
|
||||
if (this.get("tagId") === "none") {
|
||||
content.title = this.get("noTagsLabel");
|
||||
} else {
|
||||
content.title = this.get("tagId");
|
||||
}
|
||||
} else if (this.get("noTagsSelected")) {
|
||||
content.title = this.get("noTagsLabel");
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user