Skip to content

Commit

Permalink
Fix order of partition used / free on devicesRead.
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-unwin committed Jul 14, 2024
1 parent 485a5bf commit a6334f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Views/devicesRead.php
Original file line number Diff line number Diff line change
Expand Up @@ -1415,8 +1415,8 @@
<td><?= $row->type ?></td>
<td><?= $row->mount_point ?></td>
<td><?= number_format($row->size / 1000) ?> GB</td>
<td><?= number_format($row->used / 1000) ?> GB</td>
<td><?= number_format($row->free / 1000) ?> GB</td>
<td><?= number_format($row->used / 1000) ?> GB</td>
<td><?= $row->format ?></td>
<td><?= $row->serial ?></td>
</tr>
Expand Down

0 comments on commit a6334f6

Please sign in to comment.