Skip to content
This repository has been archived by the owner on May 20, 2023. It is now read-only.

Commit

Permalink
Fixed problem with unknown ray events
Browse files Browse the repository at this point in the history
  • Loading branch information
butschster committed Nov 27, 2021
1 parent 7ec8c91 commit a1d9863
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion public/js/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"/js/app.js": "/js/app.js?id=e095241ae8d70d938dba",
"/js/app.js": "/js/app.js?id=212c41900f583846f62c",
"/css/app.css": "/css/app.css?id=078410fc413bdccd8cc9"
}
4 changes: 0 additions & 4 deletions resources/js/Smtp/event.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,4 @@ export default class extends Event {
get type() {
return 'Smtp'
}

get payloads() {
return this.event.exception.values
}
}
4 changes: 4 additions & 0 deletions resources/js/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,10 @@ export const store = createStore({
}
},
pushEvent(state, event) {
if (!event || !event.uuid) {
return;
}

this.commit('ensureScreenExists', state.currentScreen)

const existsEvent = this.getters.eventByUuid(event.uuid)
Expand Down

0 comments on commit a1d9863

Please sign in to comment.