mirror of
https://github.com/itdoginfo/podkop.git
synced 2025-12-06 03:26:51 +03:00
feat: change naming for rules_other_mark_exist
This commit is contained in:
@@ -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: '',
|
||||
},
|
||||
],
|
||||
|
||||
@@ -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: ""
|
||||
}
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user