Merge pull request #6410 from artoscinote/ma_SCI_9502

Fix delete all steps modal [SCI-9502]
This commit is contained in:
Martin Artnik 2023-10-10 17:10:12 +02:00 committed by GitHub
commit 8d9c64849c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,6 +24,9 @@
export default {
name: 'deleteStepsModal',
mounted() {
// move modal to body to avoid z-index issues
$('body').append($(this.$refs.modal));
$(this.$refs.modal).modal('show');
$(this.$refs.modal).on('hidden.bs.modal', () => {
this.$emit('close');