Merge pull request #38816 from KerollesFathy/translate-no-tags
fix(filter): update condition to use translated string for "No Tags"
This commit is contained in:
commit
215a4231f5
1 changed files with 1 additions and 1 deletions
|
|
@ -1048,7 +1048,7 @@ class FilterArea {
|
|||
|
||||
apply_filter(fieldname, value) {
|
||||
let operator = "=";
|
||||
if (value === "" || (fieldname === "_user_tags" && value === "No Tags")) {
|
||||
if (value === "" || (fieldname === "_user_tags" && value === __("No Tags"))) {
|
||||
operator = "is";
|
||||
value = "not set";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue