Skip to content
This repository was archived by the owner on Feb 7, 2024. It is now read-only.

Commit 88cf779

Browse files
authored
Merge pull request #533 from vikas5914/patch-1
Fix Uncaught TypeError: Cannot read property 'data' of undefined.
2 parents 6d8e892 + 60c00d1 commit 88cf779

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/views/dashboard.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ class="rounded-full px-3 py-1 inline-block text-sm"
314314
});
315315
316316
this.pusher.connection.bind('error', event => {
317-
if (event.error.data.code === 4100) {
317+
if (event.data.code === 4100) {
318318
this.connected = false;
319319
this.logs = [];
320320
this.chart = null;

0 commit comments

Comments
 (0)