Skip to content

Commit

Permalink
bytes to widdle bibbies
Browse files Browse the repository at this point in the history
  • Loading branch information
zephraph committed Jul 17, 2023
1 parent 38c5cad commit a9e56e4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/forms/image-from-snapshot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ export function CreateImageFromSnapshotSideModalForm() {
<PropertiesTable>
<PropertiesTable.Row label="Snapshot">{data.name}</PropertiesTable.Row>
<PropertiesTable.Row label="Shared with">{project}</PropertiesTable.Row>
<PropertiesTable.Row label="Size">{fileSize(data.size)}</PropertiesTable.Row>
<PropertiesTable.Row label="Size">
{fileSize(data.size, { base: 2 })}
</PropertiesTable.Row>
</PropertiesTable>

<NameField name="name" control={form.control} required />
Expand Down

0 comments on commit a9e56e4

Please sign in to comment.