diff --git a/package.json b/package.json index fc743e67..98c94f45 100644 --- a/package.json +++ b/package.json @@ -114,7 +114,6 @@ "@mdi/font": "^6.1.95", "@turf/helpers": "^6.5.0", "@vscode/vscode-languagedetection": "^1.0.21", - "@vue/compat": "^3.2.33", "ace-builds": "^1.4.13", "better-sqlite3": "^7.5.0", "electron-log": "^4.4.1", diff --git a/src/renderer/components/Workspace.vue b/src/renderer/components/Workspace.vue index ef57236a..5fd48414 100644 --- a/src/renderer/components/Workspace.vue +++ b/src/renderer/components/Workspace.vue @@ -601,9 +601,12 @@ export default { return false; }, hasTools () { - return this.workspace.customizations.processesList || + if (!this.workspace.customizations) return false; + else { + return this.workspace.customizations.processesList || this.workspace.customizations.usersManagement || this.workspace.customizations.variables; + } } }, watch: { diff --git a/src/renderer/components/WorkspaceExploreBar.vue b/src/renderer/components/WorkspaceExploreBar.vue index 901396ff..3ebb25d5 100644 --- a/src/renderer/components/WorkspaceExploreBar.vue +++ b/src/renderer/components/WorkspaceExploreBar.vue @@ -115,6 +115,8 @@