Skip to content

Commit

Permalink
fix(Dialog): fix not modal bug (#577)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lydanne committed Mar 10, 2021
1 parent efed7f2 commit 2e630b5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/element3/src/composables/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,10 @@ function usePopup(props) {
rendered.value = true
}

const props = merge({}, instance.proxy, options)
const props = merge(instance.proxy, options)
/**
* fix bug (#577)
*/

if (_closeTimer) {
clearTimeout(_closeTimer)
Expand Down

0 comments on commit 2e630b5

Please sign in to comment.