diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-08-19 03:32:01 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-08-19 03:32:01 +0900 |
| commit | c2b882a5d70763bf1a40c1f9a7ea069bc9e91598 (patch) | |
| tree | c92b985cb2ae154cd556884d914b652df08470c3 /src/client/app/common | |
| parent | Refactoring (diff) | |
| download | misskey-c2b882a5d70763bf1a40c1f9a7ea069bc9e91598.tar.gz misskey-c2b882a5d70763bf1a40c1f9a7ea069bc9e91598.tar.bz2 misskey-c2b882a5d70763bf1a40c1f9a7ea069bc9e91598.zip | |
Improve cpu and memory chart in control panel
Diffstat (limited to 'src/client/app/common')
| -rw-r--r-- | src/client/app/common/views/widgets/server.cpu-memory.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/views/widgets/server.cpu-memory.vue b/src/client/app/common/views/widgets/server.cpu-memory.vue index 2988993c94..b0421d6150 100644 --- a/src/client/app/common/views/widgets/server.cpu-memory.vue +++ b/src/client/app/common/views/widgets/server.cpu-memory.vue @@ -122,7 +122,7 @@ export default Vue.extend({ this.memP = (stats.mem.used / stats.mem.total * 100).toFixed(0); }, onStatsLog(statsLog) { - statsLog.forEach(stats => this.onStats(stats)); + statsLog.reverse().forEach(stats => this.onStats(stats)); } } }); |