export padIP: пробелы вокруг /

This commit is contained in:
2026-06-22 20:23:09 +04:00
parent deeb54af1c
commit 5565e067ef
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ function createExportRouter() {
function padIP(cidr) {
const [ip, mask] = cidr.split('/');
const octets = ip.split('.').map(o => o.padStart(3, ' '));
return octets.join('.') + '/' + mask;
return octets.join('.') + ' / ' + mask;
}
function renderTable(cidrs) {