diff --git a/src/components/UpdateK8s.svelte b/src/components/UpdateK8s.svelte index 82c245ae..5f255418 100644 --- a/src/components/UpdateK8s.svelte +++ b/src/components/UpdateK8s.svelte @@ -167,7 +167,7 @@ ) return workers.map((worker, i) => { const { contractId, name, planetary, capacity: { cpu, memory }, mounts: [ { size } ] } = worker; - return [i + 1, contractId, name, planetary, cpu, memory, size / (1024 * 1024 * 1024)]; + return [`${i + 1} `, contractId, name, planetary, ` ${cpu} `, memory, size / (1024 * 1024 * 1024)]; }); }