diff options
Diffstat (limited to 'src/client/components')
| -rw-r--r-- | src/client/components/instance-stats.vue | 4 |
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]; |