fix(docker/images): show empty size cell [EE-5823] (#9954)

pull/9986/head
Chaim Lev-Ari 1 year ago committed by GitHub
parent acf9203580
commit 1cecbd7177
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7,6 +7,6 @@ export const size = columnHelper.accessor('VirtualSize', {
header: 'Size',
cell: ({ getValue }) => {
const value = getValue();
return humanize(value);
return humanize(value) || '-';
},
});

Loading…
Cancel
Save