summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2020-02-17 07:23:39 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2020-02-17 07:23:39 +0900
commite382982d32fe6018745d21a794ecce1f9c6be00a (patch)
treeaa6a914363e357ce689f581fa1e9c6cf65639b08 /src/client
parent:art: (diff)
downloadsharkey-e382982d32fe6018745d21a794ecce1f9c6be00a.tar.gz
sharkey-e382982d32fe6018745d21a794ecce1f9c6be00a.tar.bz2
sharkey-e382982d32fe6018745d21a794ecce1f9c6be00a.zip
Fix bug
Diffstat (limited to 'src/client')
-rw-r--r--src/client/components/instance-stats.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/components/instance-stats.vue b/src/client/components/instance-stats.vue
index a2625f4ab6..378e9ce391 100644
--- a/src/client/components/instance-stats.vue
+++ b/src/client/components/instance-stats.vue
@@ -246,8 +246,8 @@ export default Vue.extend({
this.notesLocalDoD = this.info.originalNotesCount - chart.perDay.notes.local.total[1];
this.notesRemoteWoW = (this.info.notesCount - this.info.originalNotesCount) - chart.perDay.notes.remote.total[7];
this.notesRemoteDoD = (this.info.notesCount - this.info.originalNotesCount) - chart.perDay.notes.remote.total[1];
- this.usersLocalWoW = this.info.usersCount - chart.perDay.users.local.total[7];
- this.usersLocalDoD = this.info.usersCount - chart.perDay.users.local.total[1];
+ this.usersLocalWoW = this.info.originalUsersCount - chart.perDay.users.local.total[7];
+ this.usersLocalDoD = this.info.originalUsersCount - chart.perDay.users.local.total[1];
this.usersRemoteWoW = (this.info.usersCount - this.info.originalUsersCount) - chart.perDay.users.remote.total[7];
this.usersRemoteDoD = (this.info.usersCount - this.info.originalUsersCount) - chart.perDay.users.remote.total[1];