Skip to content

Commit 3566964

Browse files
committed
Fixed scientific convention issue in image size
Signed-off-by: Mohammed Affan <72978371+Affan-7@users.noreply.github.com>
1 parent 8837d11 commit 3566964

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/command/formatter/image.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ func (c *imageContext) CreatedAt() string {
250250
}
251251

252252
func (c *imageContext) Size() string {
253-
return units.HumanSizeWithPrecision(float64(c.i.Size), 3)
253+
return units.HumanSize(float64(c.i.Size))
254254
}
255255

256256
func (c *imageContext) Containers() string {

0 commit comments

Comments
 (0)