This commit is contained in:
JesmoDev
2022-05-23 11:34:08 +02:00
parent d290fdb629
commit e5088c3c1b
2 changed files with 9 additions and 3 deletions

View File

@@ -65,10 +65,10 @@ export class UmbInstallerDatabase extends LitElement {
switch (this.databaseType) {
case 'msqls':
return this._renderSqlServer();
case 'custom':
return this._renderCustom();
default:
case 'sqlite':
return this._renderSQLite();
default:
return this._renderCustom();
}
}
private _renderSQLite = () => html` <uui-form-layout-item>

View File

@@ -15,6 +15,12 @@ export class UmbInstaller extends LitElement {
@state()
step = 2;
@state()
user = {};
@state()
database = {};
private _renderSection() {
switch (this.step) {
case 2: