Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix: Correctly show free space if lower than quota in Files navigation
Signed-off-by: Côme Chilliet <[email protected]>
  • Loading branch information
come-nc committed Jul 29, 2025
commit aaccfc27ee241dc5c8dc1914fe1a3db5f03a32ef
2 changes: 1 addition & 1 deletion apps/files/src/components/NavigationQuota.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export default {
computed: {
storageStatsTitle() {
const usedQuotaByte = formatFileSize(this.storageStats?.used, false, false)
const quotaByte = formatFileSize(this.storageStats?.quota, false, false)
const quotaByte = formatFileSize(this.storageStats?.total, false, false)

// If no quota set
if (this.storageStats?.quota < 0) {
Expand Down