mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 02:53:41 +08:00
UX: update "all tags" to "remove filter" for tag breadcrumb dropdown (#27424)
This commit is contained in:
parent
dc2be1a9bd
commit
f95d80af26
|
@ -58,8 +58,8 @@ module("Integration | Component | select-kit/tag-drop", function (hooks) {
|
|||
);
|
||||
assert.strictEqual(
|
||||
content[1].name,
|
||||
I18n.t("tagging.selector_all_tags"),
|
||||
"it has the correct label for all-tags"
|
||||
I18n.t("tagging.selector_remove_filter"),
|
||||
"it has the correct label for removing the tag filter"
|
||||
);
|
||||
|
||||
await this.subject.fillInFilter("dav");
|
||||
|
|
|
@ -106,7 +106,7 @@ export default ComboBoxComponent.extend(TagsMixin, {
|
|||
if (this.tagId) {
|
||||
shortcuts.push({
|
||||
id: ALL_TAGS_ID,
|
||||
name: I18n.t("tagging.selector_all_tags"),
|
||||
name: I18n.t("tagging.selector_remove_filter"),
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -4454,7 +4454,6 @@ en:
|
|||
all_tags: "All tags"
|
||||
other_tags: "Other Tags"
|
||||
selector_tags: "tags"
|
||||
selector_all_tags: "all tags"
|
||||
selector_no_tags: "no tags"
|
||||
selector_remove_filter: "remove filter"
|
||||
tags: "Tags"
|
||||
|
@ -5386,7 +5385,6 @@ en:
|
|||
legal: "Legal"
|
||||
moderation_flags: "Moderation Flags"
|
||||
|
||||
|
||||
appearance:
|
||||
title: "Appearance"
|
||||
sidebar_link:
|
||||
|
|
Loading…
Reference in New Issue
Block a user