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) {
|
apply_filter(fieldname, value) {
|
||||||
let operator = "=";
|
let operator = "=";
|
||||||
if (value === "") {
|
if (value === "" || (fieldname === "_user_tags" && value === "No Tags")) {
|
||||||
operator = "is";
|
operator = "is";
|
||||||
value = "not set";
|
value = "not set";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue