Skip to content

Commit

Permalink
硬盘状态显示改为已用和剩余
Browse files Browse the repository at this point in the history
  • Loading branch information
hslr-s committed Jan 17, 2024
1 parent 61279cf commit 82297a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ onUnmounted(() => {
:progress-height="5"
:percentage="correctionNumber(diskState?.usedPercent || 0)"
:card-type-style="cardTypeStyle"
:info-card-right-text="`${formatdiskSize(formatdiskToByte(diskState?.total || 0))}/${formatdiskSize(formatdiskToByte(diskState?.free || 0))}`"
:info-card-right-text="`${formatdiskSize(formatdiskToByte(diskState?.used || 0))}/${formatdiskSize(formatdiskToByte(diskState?.free || 0))}`"
:info-card-left-text="diskState?.mountpoint"
:text-color="textColor"
/>
Expand Down

0 comments on commit 82297a0

Please sign in to comment.