Skip to content

Commit cb48754

Browse files
committed
Merge branch 'dev' into next
2 parents 1b3e8aa + 986a432 commit cb48754

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

dist/VueFinalModal.esm.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/VueFinalModal.esm.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/VueFinalModal.umd.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/VueFinalModal.umd.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/src/components/basic/BasicOptions.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
:overlay-transition="overlayTransition ? 'vfm' : ''"
1313
:z-index-auto="zIndexAuto"
1414
:z-index-base="zIndexBase"
15-
:z-index="allowZIndex ? zIndexBase : false"
15+
:z-index="allowZIndex ? zIndex : false"
1616
:attach="attach ? '#attach' : false"
1717
:focus-retain="focusRetain"
1818
:focus-trap="focusTrap"

lib/VueFinalModal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ const isComponentReadyToBeDestroyed = computed(() => {
134134
export const calculateZIndex = computed(() => {
135135
if (props.zIndex === false) {
136136
if (props.zIndexAuto) {
137-
return props.zIndexBase + 2 * (modalStackIndex.value || 0)
137+
return +props.zIndexBase + 2 * (modalStackIndex.value || 0)
138138
} else {
139139
return false
140140
}

0 commit comments

Comments
 (0)