Fix: Entry page setting in Dev mode (#3940)

This commit is contained in:
Nelson Chan 2023-10-28 10:34:15 +08:00 committed by GitHub
parent b32d869823
commit 201c10416e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -33,10 +33,10 @@ export default {
} else if (res.type === "entryPage") { // Dev only. For production, the logic is in the server side } else if (res.type === "entryPage") { // Dev only. For production, the logic is in the server side
const entryPage = res.entryPage; const entryPage = res.entryPage;
if (entryPage.startsWith("statusPage-")) {
if (entryPage === "statusPage") { this.$router.push("/status/" + entryPage.replace("statusPage-", ""));
this.$router.push("/status");
} else { } else {
// should the old setting style still exist here?
this.$router.push("/dashboard"); this.$router.push("/dashboard");
} }
} else if (res.type === "setup-database") { } else if (res.type === "setup-database") {