feat: change naming for rules_other_mark_exist

This commit is contained in:
divocat
2025-10-13 23:42:30 +03:00
parent 2e257e4adf
commit f7517e6794
2 changed files with 4 additions and 2 deletions

View File

@@ -111,7 +111,9 @@ export async function runNftCheck() {
},
{
state: !data.rules_other_mark_exist ? 'success' : 'warning',
key: _('None other Mark rules'),
key: !data.rules_other_mark_exist
? _('No other marking rules found')
: _('Additional marking rules found'),
value: '',
},
],

View File

@@ -2850,7 +2850,7 @@ async function runNftCheck() {
},
{
state: !data.rules_other_mark_exist ? "success" : "warning",
key: _("None other Mark rules"),
key: !data.rules_other_mark_exist ? _("No other marking rules found") : _("Additional marking rules found"),
value: ""
}
]