Skip to content
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.

solve shuffle #916

Draft
wants to merge 1 commit into
base: development
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/UpdateK8s.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -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)];
});
}
</script>
Expand Down