Skip to content
This repository was archived by the owner on Sep 27, 2021. It is now read-only.

Add Commas Large Numbers #69

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
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
4 changes: 2 additions & 2 deletions ui/components/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<h1 class="h3 mb-3 font-weight-normal">GitBackup</h1>
</a>

<p>We backup and archive <a href="https://github.com">GitHub</a>. Currently tracking <span v-if="stats">{{stats.total}}</span> users/orgs.</p>
<p>We backup and archive <a href="https://github.com">GitHub</a>. Currently tracking <span v-if="stats">{{Number(stats.total).tolocalestring()}}</span> users/orgs.</p>
</div>

<router-view></router-view>

<p class="mt-5 mb-3 text-muted text-center">
<span v-if="stats">Storing {{stats.storage}}, {{stats.repos}} repositories, and {{stats.users}} users<br></span>
<span v-if="stats">{{stats.bytesPerMinute}}/min, {{stats.reposPerMinute}} repos/min, {{stats.usersPerMinute}} users/min<br></span>
<span v-if="stats">{{stats.bytesPerMinute}}/min, {{stats.reposPerMinute}} repos/min, {{Number(stats.usersPerMinute).toLocaleString()}} users/min<br></span>
<span>Built by <a href="https://github.com/super3">@super3</a>, <a href="https://github.com/montyanderson">@montyanderson</a>, and <a href="https://github.com/calebcase">@calebcase</a><br></span>
</p>
</div>
Expand Down