diff options
Diffstat (limited to 'src/client/app/common/views/widgets/server.cpu-memory.vue')
| -rw-r--r-- | src/client/app/common/views/widgets/server.cpu-memory.vue | 3 |
1 files changed, 1 insertions, 2 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 55aa1ea895..119a77af83 100644 --- a/src/client/app/common/views/widgets/server.cpu-memory.vue +++ b/src/client/app/common/views/widgets/server.cpu-memory.vue @@ -91,8 +91,7 @@ export default Vue.extend({ mounted() { this.connection.on('stats', this.onStats); this.connection.on('statsLog', this.onStatsLog); - this.connection.send({ - type: 'requestLog', + this.connection.send('requestLog', { id: Math.random().toString() }); }, |