Skip to content
Snippets Groups Projects
Commit 5702b5f2 authored by Xaver Maierhofer's avatar Xaver Maierhofer Committed by Geno
Browse files

[TASK] Split into rows - long gateway names

parent b1a5e472
No related branches found
No related tags found
No related merge requests found
......@@ -46,13 +46,16 @@ define(['sorttable', 'snabbdom', 'd3-interpolate', 'moment', 'helper', 'utils/no
nodeIdLink(node.gateway),
V.h('br'),
'IPv4'
]),
V.h('span', [
])
];
if (node.gateway6 !== undefined) {
gatewayRows.push(V.h('span', [
nodeIdLink(node.gateway6),
V.h('br'),
'IPv6'
])
];
]));
}
return V.h('td', { props: { className: 'gateway' } }, gatewayCols);
}
......
......@@ -2,6 +2,7 @@
.clients,
.gateway {
display: flex;
flex-flow: wrap;
span {
flex-grow: 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment