mirror of
https://github.com/portainer/portainer.git
synced 2025-08-02 20:35:25 +02:00
fix(docker/images): show empty size cell [EE-5823] (#9954)
This commit is contained in:
parent
acf9203580
commit
1cecbd7177
1 changed files with 1 additions and 1 deletions
|
@ -7,6 +7,6 @@ export const size = columnHelper.accessor('VirtualSize', {
|
|||
header: 'Size',
|
||||
cell: ({ getValue }) => {
|
||||
const value = getValue();
|
||||
return humanize(value);
|
||||
return humanize(value) || '-';
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue