Merge pull request #2666 from weaveworks/2660-fix-pid-truncation

Prevents 6 digit pids from being truncated in details panel/table mode
This commit is contained in:
Simon
2017-07-05 14:27:56 +02:00
committed by GitHub

View File

@@ -46,7 +46,8 @@ export const CANVAS_MARGINS = {
// Node details table constants
export const NODE_DETAILS_TABLE_CW = {
XS: '32px',
S: '50px',
// 6 chars wide with our current font choices, (pids can be 6, ports only 5).
S: '56px',
M: '70px',
L: '85px',
XL: '120px',