diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-17 07:23:39 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-17 07:23:39 +0900 |
| commit | e382982d32fe6018745d21a794ecce1f9c6be00a (patch) | |
| tree | aa6a914363e357ce689f581fa1e9c6cf65639b08 | |
| parent | :art: (diff) | |
| download | sharkey-e382982d32fe6018745d21a794ecce1f9c6be00a.tar.gz sharkey-e382982d32fe6018745d21a794ecce1f9c6be00a.tar.bz2 sharkey-e382982d32fe6018745d21a794ecce1f9c6be00a.zip | |
Fix bug
| -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]; |