[TASK] Split into rows - long gateway names
This commit is contained in:
parent
b1a5e472e4
commit
5702b5f21b
@ -46,13 +46,16 @@ define(['sorttable', 'snabbdom', 'd3-interpolate', 'moment', 'helper', 'utils/no
|
|||||||
nodeIdLink(node.gateway),
|
nodeIdLink(node.gateway),
|
||||||
V.h('br'),
|
V.h('br'),
|
||||||
'IPv4'
|
'IPv4'
|
||||||
]),
|
])
|
||||||
V.h('span', [
|
];
|
||||||
|
|
||||||
|
if (node.gateway6 !== undefined) {
|
||||||
|
gatewayRows.push(V.h('span', [
|
||||||
nodeIdLink(node.gateway6),
|
nodeIdLink(node.gateway6),
|
||||||
V.h('br'),
|
V.h('br'),
|
||||||
'IPv6'
|
'IPv6'
|
||||||
])
|
]));
|
||||||
];
|
}
|
||||||
|
|
||||||
return V.h('td', { props: { className: 'gateway' } }, gatewayCols);
|
return V.h('td', { props: { className: 'gateway' } }, gatewayCols);
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
.clients,
|
.clients,
|
||||||
.gateway {
|
.gateway {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
flex-flow: wrap;
|
||||||
|
|
||||||
span {
|
span {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user