Skip to content

Commit

Permalink
fix angular aot build
Browse files Browse the repository at this point in the history
  • Loading branch information
mlabouardy committed Jun 17, 2019
1 parent 5cbe93d commit 26bc6b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/src/app/storage/ovh/ovh.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class OvhStorageComponent implements OnInit {
totalObjects += container.storedObjects;
totalSize += container.storedBytes;
});
this.storedObjects = this.formatNumber(totalObjects);
this.storedObjects = this.formatNumber(totalObjects).toString();
this.storageContainerTotalSize = this.bytesToSizeWithUnit(totalSize);
this.storageContainers = data.length;
this.loadingStorageContainers = false;
Expand Down

0 comments on commit 26bc6b3

Please sign in to comment.