We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07eb8c0 commit 47ca866Copy full SHA for 47ca866
lib/VueFinalModal.vue
@@ -112,7 +112,11 @@ export default {
112
},
113
calculateZIndex() {
114
if (typeof this.zIndex === 'boolean') {
115
- return this.zIndexBase + 2 * (this.modalStackIndex || 0)
+ if (this.attach) {
116
+ return 'unset'
117
+ } else {
118
+ return this.zIndexBase + 2 * (this.modalStackIndex || 0)
119
+ }
120
} else {
121
return this.zIndex
122
}
0 commit comments