Skip to content

Commit

Permalink
Merge pull request #578 from hug-sun-1/fix/dialog
Browse files Browse the repository at this point in the history
fix(Dialog): fix not modal bug (#577)
  • Loading branch information
cuixiaorui authored Mar 27, 2021
2 parents aa48219 + 2e630b5 commit 9f234e3
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 9f234e3

Please sign in to comment.