mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
Fixed: Blacklisted country check not working #8598
This commit is contained in:
parent
f79868959a
commit
9a024e6d9c
1 changed files with 2 additions and 2 deletions
|
|
@ -1051,7 +1051,7 @@ const render_template = () => {
|
|||
id='itemslist-textarea'
|
||||
class="w-100 form-control"
|
||||
rows='3'>${items_list.length > 0 ? items_list.join(',') : ''}</textarea>
|
||||
<small>${i18n(gui.input_description) || i18n_ext.blacklisted_country}</small>
|
||||
<small>${gui.input_description || i18n_ext.blacklisted_country}</small>
|
||||
<div class="invalid-feedback"></div>
|
||||
<label></label>
|
||||
</div>
|
||||
|
|
@ -1062,7 +1062,7 @@ const render_template = () => {
|
|||
|
||||
$table_editor.empty();
|
||||
|
||||
$table_editor.append(`<tr><th class='text-center w-25'>${i18n_ext.enabled}</th><th>${i18n(gui.input_title) || i18n_ext.scripts_list.templates.blacklisted_country_list}:</th></tr>`)
|
||||
$table_editor.append(`<tr><th class='text-center w-25'>${i18n_ext.enabled}</th><th>${gui.input_title || i18n_ext.scripts_list.templates.blacklisted_country_list}:</th></tr>`)
|
||||
$table_editor.append($component_container);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue