Merge pull request #533 from vikas5914/patch-1
Fix Uncaught TypeError: Cannot read property 'data' of undefined.
This commit is contained in:
commit
88cf779dd7
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue