-
-
-
diff --git a/src/mixins/theme.js b/src/mixins/theme.js
index 2f7867df..e3b361ee 100644
--- a/src/mixins/theme.js
+++ b/src/mixins/theme.js
@@ -30,6 +30,9 @@ export default {
theme() {
// As entry can be status page now, set forceStatusPageTheme to true to use status page theme
if (this.forceStatusPageTheme) {
+ if (this.statusPageTheme === "auto") {
+ return this.system;
+ }
return this.statusPageTheme;
}
diff --git a/src/pages/Settings.vue b/src/pages/Settings.vue
index d3c153df..f3c6b776 100644
--- a/src/pages/Settings.vue
+++ b/src/pages/Settings.vue
@@ -116,12 +116,6 @@ export default {
backup: {
title: this.$t("Backup"),
},
- /*
- Hidden for now: Unfortunately, after some test, I found that Playwright requires a lot of libraries to be installed on the Linux host in order to start Chrome or Firefox.
- It will be hard to install, so I hide this feature for now. But it still accessible via URL: /settings/plugins.
- plugins: {
- title: this.$tc("plugin", 2),
- },*/
about: {
title: this.$t("About"),
},
diff --git a/src/router.js b/src/router.js
index 4d5293b8..a8644805 100644
--- a/src/router.js
+++ b/src/router.js
@@ -19,7 +19,6 @@ import DockerHosts from "./components/settings/Docker.vue";
import MaintenanceDetails from "./pages/MaintenanceDetails.vue";
import ManageMaintenance from "./pages/ManageMaintenance.vue";
import APIKeys from "./components/settings/APIKeys.vue";
-import Plugins from "./components/settings/Plugins.vue";
// Settings - Sub Pages
import Appearance from "./components/settings/Appearance.vue";
@@ -130,10 +129,6 @@ const routes = [
path: "backup",
component: Backup,
},
- {
- path: "plugins",
- component: Plugins,
- },
{
path: "about",
component: About,