mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-20 22:03:03 +08:00
Fix delete all steps modal [SCI-9502]
This commit is contained in:
parent
dfe3a5c54b
commit
03e0bc9a02
1 changed files with 3 additions and 0 deletions
|
@ -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');
|
||||
|
|
Loading…
Reference in a new issue