diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-11-04 03:44:06 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-11-04 03:44:06 +0900 |
| commit | 0b7af5c66992a4ed0e49274d6f6f18fcfd14ef1e (patch) | |
| tree | 390a6763a6ac4fbde9b70085abfee510290ad77d /src/client/app/admin | |
| parent | Fix: update_client_setting (#3086) (diff) | |
| download | sharkey-0b7af5c66992a4ed0e49274d6f6f18fcfd14ef1e.tar.gz sharkey-0b7af5c66992a4ed0e49274d6f6f18fcfd14ef1e.tar.bz2 sharkey-0b7af5c66992a4ed0e49274d6f6f18fcfd14ef1e.zip | |
[Client] Fix bug
Diffstat (limited to 'src/client/app/admin')
| -rw-r--r-- | src/client/app/admin/views/ap-log.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/admin/views/ap-log.vue b/src/client/app/admin/views/ap-log.vue index 3a88167648..175a8c1117 100644 --- a/src/client/app/admin/views/ap-log.vue +++ b/src/client/app/admin/views/ap-log.vue @@ -34,8 +34,8 @@ export default Vue.extend({ mounted() { this.connection = (this as any).os.stream.useSharedConnection('apLog'); - this.connection.on('stats', this.onLog); - this.connection.on('statsLog', this.onLogs); + this.connection.on('log', this.onLog); + this.connection.on('logs', this.onLogs); this.connection.send('requestLog', { id: Math.random().toString().substr(2, 8), length: 50 |