Checks presets earlier on collection creation modal component. #734.
This commit is contained in:
parent
0e07408852
commit
497b5f98db
|
@ -134,8 +134,11 @@ export default {
|
|||
},
|
||||
},
|
||||
watch: {
|
||||
hasPresetsHook() {
|
||||
this.selectedEstrategy = this.hasPresetsHook ? undefined : 'mappers';
|
||||
hasPresetsHook: {
|
||||
handler() {
|
||||
this.selectedEstrategy = this.hasPresetsHook ? undefined : 'mappers';
|
||||
},
|
||||
immediate: true
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
|
|
Loading…
Reference in New Issue