Skip to content

Commit

Permalink
fix: error handling on layout-manager
Browse files Browse the repository at this point in the history
  • Loading branch information
frievoe97 committed Apr 18, 2024
1 parent 32cb67a commit c904f8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/layout-manager/LayoutManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,8 @@ export default defineComponent({
},
setPanelError(e: any) {
console.error('LMError: ' + e.msg)
this.errorPanelText = '' + e.msg
console.error('LMError: ' + (e.msg || e))
this.errorPanelText = '' + (e.msg || e)
},
buildLayoutFromURL() {
Expand Down

0 comments on commit c904f8e

Please sign in to comment.