Skip to content

Commit 33d4a29

Browse files
realcarbonneaurstoenescu
authored andcommitted
QModal no imposed value prop changes on route change fix quasarframework#1502 (quasarframework#1503)
* QModal Respect Value Prop on Route Change * value undefined * Update model-toggle.js * Update QModal.js
1 parent 32ee92f commit 33d4a29

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/modal/QModal.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,9 @@ export default {
7878
},
7979
watch: {
8080
$route () {
81-
this.hide()
81+
if (this.value === void 0) {
82+
this.hide()
83+
}
8284
}
8385
},
8486
computed: {

0 commit comments

Comments
 (0)