Merge branch 'fix/596' of ssh://bit.adguard.com:7999/dns/adguard-dns into fix/596

This commit is contained in:
Aleksey Dmitrevskiy 2019-03-06 18:06:33 +03:00
commit 8e09424774

View File

@ -202,4 +202,4 @@ export const redirectToCurrentProtocol = (values, httpPort = 80) => {
}
};
export const normalizeTextarea = text => text && text.replace(/[;, ]/g, '\n').split('\n');
export const normalizeTextarea = text => text && text.replace(/[;, ]/g, '\n').split('\n').filter(n => n);