mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-04 09:50:09 +00:00
Fixes multiple replacement not taking place #4942
This commit is contained in:
parent
769658268f
commit
d88d26293a
1 changed files with 1 additions and 1 deletions
|
|
@ -313,7 +313,7 @@ const get_unit_times = (seconds) => {
|
|||
/* ******************************************************* */
|
||||
|
||||
function getSanitizedExList(alert_exclusion_list) {
|
||||
return alert_exclusion_list.replace("\n", ";");
|
||||
return alert_exclusion_list.split("\n").join(";");
|
||||
}
|
||||
|
||||
/* ******************************************************* */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue