Skip to content
Snippets Groups Projects
Unverified Commit a2788c69 authored by Chocobozzz's avatar Chocobozzz
Browse files

Fix quota precision in users list

parent 6304df89
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,7 @@ export class UserService {
if (user.videoQuota === -1) {
videoQuota = this.i18n('Unlimited')
} else {
videoQuota = this.bytesPipe.transform(user.videoQuota)
videoQuota = this.bytesPipe.transform(user.videoQuota, 0)
}
return Object.assign(user, {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment