Merge pull request #38695 from UmakanthKaspa/fix/no-tag-filter

fix: no tags filter shows empty list
This commit is contained in:
Ejaaz Khan 2026-04-18 08:38:30 +05:30 committed by GitHub
commit 031e032252
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 === "") {
if (value === "" || (fieldname === "_user_tags" && value === "No Tags")) {
operator = "is";
value = "not set";
}