Skip to content

Commit

Permalink
Fixes lint errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
metroid-samus committed Sep 21, 2023
1 parent 33c9c31 commit 5d6f572
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/dispatch/static/dispatch/src/case/ResourcesTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export default {
]),
},
async mounted() {
async mounted() {
let enabledPlugins = await this.getEnabledPlugins()
this.ticketPluginEnabled = enabledPlugins.includes("ticket")
Expand Down
3 changes: 1 addition & 2 deletions src/dispatch/static/dispatch/src/incident/ResourcesTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export default {
]),
},
async mounted() {
async mounted() {
let enabledPlugins = await this.getEnabledPlugins()
this.ticketPluginEnabled = enabledPlugins.includes("ticket")
Expand All @@ -136,7 +136,6 @@ export default {
this.documentPluginEnabled = enabledPlugins.includes("document")
},
methods: {
...mapActions("incident", ["createAllResources", "getEnabledPlugins"]),
},
Expand Down

0 comments on commit 5d6f572

Please sign in to comment.