mirror of https://github.com/portainer/portainer
fix(docker/images): show empty size cell [EE-5823] (#9954)
parent
acf9203580
commit
1cecbd7177
|
@ -7,6 +7,6 @@ export const size = columnHelper.accessor('VirtualSize', {
|
||||||
header: 'Size',
|
header: 'Size',
|
||||||
cell: ({ getValue }) => {
|
cell: ({ getValue }) => {
|
||||||
const value = getValue();
|
const value = getValue();
|
||||||
return humanize(value);
|
return humanize(value) || '-';
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue