Skip to content

Commit 4226051

Browse files
authored
fix(modal); fix exiting fade animation on backdrop (#2962)
1 parent 0dbac00 commit 4226051

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/modal/modal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -998,7 +998,7 @@ export default {
998998
)
999999
// Modal Backdrop
10001000
let backdrop = h(false)
1001-
if (!this.hideBackdrop && (this.is_visible || this.is_transitioning)) {
1001+
if (!this.hideBackdrop && (this.is_visible || this.is_transitioning || this.is_block)) {
10021002
backdrop = h(
10031003
'div',
10041004
{

0 commit comments

Comments
 (0)