Fix delete all steps modal [SCI-9502]

This commit is contained in:
Martin Artnik 2023-10-10 17:08:46 +02:00
parent dfe3a5c54b
commit 03e0bc9a02

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');