Skip to content

Commit 7e342cd

Browse files
authored
fix: show disk usage if disk is entirely full (#258)
Signed-off-by: NewbieOrange <NewbieOrange@users.noreply.github.com>
1 parent 9d84eab commit 7e342cd

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/utils/storage.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ export const showDiskUsage = (details: MountDetails | undefined) => {
55
details &&
66
details.total_space &&
77
details.free_space &&
8-
details.total_space > 0 &&
9-
details.free_space > 0
8+
details.total_space > 0
109
)
1110
}
1211

0 commit comments

Comments
 (0)