fix(filter): update condition to use translated string for "No Tags"

This commit is contained in:
KerollesFathy 2026-04-22 16:40:49 +00:00
parent c30ea141b6
commit 1722a6204c

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