Merge pull request #533 from vikas5914/patch-1

Fix Uncaught TypeError: Cannot read property 'data' of undefined.
This commit is contained in:
rennokki 2020-09-16 04:20:26 +00:00 committed by GitHub
commit 88cf779dd7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -314,7 +314,7 @@
});
this.pusher.connection.bind('error', event => {
if (event.error.data.code === 4100) {
if (event.data.code === 4100) {
this.connected = false;
this.logs = [];
this.chart = null;