Fix alembic migrations importing app
Ensure we connect to loaded config db
This commit is contained in:
parent
bb2b28cd11
commit
b5f630ba29
18 changed files with 69 additions and 81 deletions
|
@ -23,4 +23,4 @@
|
|||
</div>
|
||||
</div>
|
||||
<div ng-if="$ctrl.state === 'setup'" class="setup"></div>
|
||||
<load-config ng-if="$ctrl.state === 'load'"></load-config>
|
||||
<load-config ng-if="$ctrl.state === 'load'" config-loaded="$ctrl.configLoaded()"></load-config>
|
||||
|
|
|
@ -22,4 +22,8 @@ export class ConfigSetupAppComponent {
|
|||
private chooseLoad(): void {
|
||||
this.state = 'load';
|
||||
}
|
||||
|
||||
private configLoaded(): void {
|
||||
this.state = 'setup';
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue