Merge pull request #38695 from UmakanthKaspa/fix/no-tag-filter
fix: no tags filter shows empty list
This commit is contained in:
commit
031e032252
1 changed files with 1 additions and 1 deletions
|
|
@ -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";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue