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:
Kerolles Fathy 2026-04-22 19:10:54 +02:00 committed by GitHub
commit 215a4231f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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";
}