Skip to content
Snippets Groups Projects
Commit d5957617 authored by Nils Brinckmann's avatar Nils Brinckmann
Browse files

Merge branch '466-deletion-dialog-for-platform-actions-stays-open-for-some-time' into 'develop'

Deactivate dialog when running the delete request

See merge request !505
parents b15295ad 354b1864
No related branches found
No related tags found
2 merge requests!514Develop,!505Deactivate dialog when running the delete request
...@@ -160,6 +160,7 @@ permissions and limitations under the Licence. ...@@ -160,6 +160,7 @@ permissions and limitations under the Licence.
v-if="actionToDelete" v-if="actionToDelete"
v-model="showDeleteDialog" v-model="showDeleteDialog"
title="Delete Action" title="Delete Action"
:disabled="isLoading"
@cancel="closeDialog" @cancel="closeDialog"
@delete="deleteAndCloseDialog" @delete="deleteAndCloseDialog"
> >
...@@ -229,7 +230,8 @@ import { LoadPlatformGenericActionTypesAction } from '@/store/vocabulary' ...@@ -229,7 +230,8 @@ import { LoadPlatformGenericActionTypesAction } from '@/store/vocabulary'
}, },
computed: { computed: {
...mapGetters('platforms', ['filteredActions']), ...mapGetters('platforms', ['filteredActions']),
...mapState('platforms', ['platform']) ...mapState('platforms', ['platform']),
...mapState('progressindicator', ['isLoading'])
}, },
methods: { methods: {
...mapActions('vocabulary', ['loadPlatformGenericActionTypes']), ...mapActions('vocabulary', ['loadPlatformGenericActionTypes']),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment