From e382982d32fe6018745d21a794ecce1f9c6be00a Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 17 Feb 2020 07:23:39 +0900 Subject: [PATCH] Fix bug --- src/client/components/instance-stats.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/components/instance-stats.vue b/src/client/components/instance-stats.vue index a2625f4ab..378e9ce39 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];