Checks presets earlier on collection creation modal component. #734.

This commit is contained in:
mateuswetah 2022-10-05 10:19:14 -03:00
parent 0e07408852
commit 497b5f98db
1 changed files with 5 additions and 2 deletions

View File

@ -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() {