mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
fix: new account quota value
Signed-off-by: SebastianKrupinski <krupinskis05@gmail.com>
This commit is contained in:
parent
c4e936c6e8
commit
fe4592c90e
1 changed files with 1 additions and 1 deletions
|
|
@ -346,7 +346,7 @@ export default {
|
|||
const validQuota = OC.Util.computerFileSize(quota)
|
||||
if (validQuota !== null && validQuota >= 0) {
|
||||
// unify format output
|
||||
quota = formatFileSize(parseFileSize(quota))
|
||||
quota = formatFileSize(parseFileSize(quota, true))
|
||||
this.newUser.quota = { id: quota, label: quota }
|
||||
return this.newUser.quota
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue