diff --git a/src/Ombi/ClientApp/angular.json b/src/Ombi/ClientApp/angular.json
index 76749756d..4fda4b82b 100644
--- a/src/Ombi/ClientApp/angular.json
+++ b/src/Ombi/ClientApp/angular.json
@@ -82,7 +82,13 @@
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.hmr.ts"
}
- ]
+ ],
+ "buildOptimizer": false,
+ "optimization": false,
+ "vendorChunk": true,
+ "extractLicenses": false,
+ "sourceMap": true,
+ "namedChunks": true
}
}
},
diff --git a/src/Ombi/ClientApp/src/app/settings/about/about.component.html b/src/Ombi/ClientApp/src/app/settings/about/about.component.html
index b823bdc7a..bf7e4b0b9 100644
--- a/src/Ombi/ClientApp/src/app/settings/about/about.component.html
+++ b/src/Ombi/ClientApp/src/app/settings/about/about.component.html
@@ -1,6 +1,10 @@
+
+
@@ -71,23 +75,23 @@
Application Base Path
{{about.applicationBasePath}}
-
-
+
+
Storage Path
{{about.storagePath}}
-
-
+
+
Ombi Database
{{about.ombiDatabaseType}}
-
-
+
+
External Database
{{about.externalDatabaseType}}
-
-
+
+
Settings Database
{{about.settingsDatabaseType}}
diff --git a/src/Ombi/ClientApp/src/app/settings/about/about.component.scss b/src/Ombi/ClientApp/src/app/settings/about/about.component.scss
index daeccd03a..55d4a9765 100644
--- a/src/Ombi/ClientApp/src/app/settings/about/about.component.scss
+++ b/src/Ombi/ClientApp/src/app/settings/about/about.component.scss
@@ -1,4 +1,6 @@
-.mat-table {
+@import "~styles/variables.scss";
+
+.mat-table {
display: block;
}
@@ -37,4 +39,13 @@
white-space: nowrap;
vertical-align: baseline;
border-radius: 0.25rem;
- }
\ No newline at end of file
+ }
+
+ .container-alert {
+ margin-left: 3%;
+ margin-right: 3%;
+ color: white;
+ background-color: $ombi-background-accent;
+ border-color: $warn;
+ }
+
diff --git a/src/Ombi/ClientApp/src/app/settings/about/about.component.ts b/src/Ombi/ClientApp/src/app/settings/about/about.component.ts
index 688669c01..e0bc3c661 100644
--- a/src/Ombi/ClientApp/src/app/settings/about/about.component.ts
+++ b/src/Ombi/ClientApp/src/app/settings/about/about.component.ts
@@ -1,10 +1,11 @@
import { Component, OnInit } from "@angular/core";
+import { HubService, SettingsService, SystemService } from "../../services";
import { IAbout, IUpdateModel } from "../../interfaces/ISettings";
-import { SettingsService, HubService, SystemService } from "../../services";
+
import { IConnectedUser } from "../../interfaces";
-import { UpdateService } from "../../services/update.service";
import { MatDialog } from "@angular/material/dialog";
import { UpdateDialogComponent } from "./update-dialog.component";
+import { UpdateService } from "../../services/update.service";
@Component({
templateUrl: "./about.component.html",
@@ -17,6 +18,15 @@ export class AboutComponent implements OnInit {
public connectedUsers: IConnectedUser[];
public newsHtml: string;
+ public get usingSqliteDatabase() {
+ if (this.about.ombiDatabaseType.toLowerCase() === 'sqlite'
+ || this.about.externalDatabaseType.toLowerCase() === 'sqlite'
+ || this.about.settingsDatabaseType.toLowerCase() === 'sqlite') {
+ return true;
+ }
+ return false;
+ }
+
private update: IUpdateModel;
constructor(private readonly settingsService: SettingsService,