mirror of
https://github.com/nextcloud/server.git
synced 2026-03-01 13:00:44 -05:00
fix: Correctly show free space if lower than quota in Files navigation
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
parent
e7ed52f16e
commit
aaccfc27ee
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue