Skip to content

Commit

Permalink
Fix filters on MDNS
Browse files Browse the repository at this point in the history
  • Loading branch information
cardigliano committed Oct 31, 2024
1 parent f9f78b6 commit 3da6cfc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/lua/modules/tag_utils.lua
Original file line number Diff line number Diff line change
Expand Up @@ -481,22 +481,22 @@ tag_utils.defined_tags = {
operators = { 'eq', 'neq', 'in', 'nin' }
},
mdns_answer = {
value_type = 'mdns_answer',
value_type = 'text',
i18n_label = i18n('db_search.tags.mdns_answer'),
operators = { 'eq', 'neq' }
},
mdns_name = {
value_type = 'mdns_name',
value_type = 'text',
i18n_label = i18n('db_search.tags.mdns_name'),
operators = { 'eq', 'neq', 'in', 'nin' }
},
mdns_name_txt = {
value_type = 'mdns_name_txt',
value_type = 'text',
i18n_label = i18n('db_search.tags.mdns_name_txt'),
operators = { 'eq', 'neq', 'in', 'nin' }
},
mdns_ssid = {
value_type = 'mdns_ssid',
value_type = 'text',
i18n_label = i18n('db_search.tags.mdns_ssid'),
operators = { 'eq', 'neq', 'in', 'nin' }
},
Expand Down

0 comments on commit 3da6cfc

Please sign in to comment.