mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-10-10 19:29:21 +08:00
[Status Page] Enable Edit Mode only if the token is presented
This commit is contained in:
@@ -56,7 +56,7 @@ export default {
|
||||
this.processing = false;
|
||||
|
||||
if (res.ok) {
|
||||
this.$router.push("/status/" + this.slug + "?edit");
|
||||
location.href = "/status/" + this.slug + "?edit";
|
||||
} else {
|
||||
|
||||
if (res.msg.includes("UNIQUE constraint")) {
|
||||
|
@@ -498,9 +498,11 @@ export default {
|
||||
},
|
||||
|
||||
edit() {
|
||||
this.$root.initSocketIO(true);
|
||||
this.enableEditMode = true;
|
||||
this.clickedEditButton = true;
|
||||
if (this.hasToken) {
|
||||
this.$root.initSocketIO(true);
|
||||
this.enableEditMode = true;
|
||||
this.clickedEditButton = true;
|
||||
}
|
||||
},
|
||||
|
||||
save() {
|
||||
|
Reference in New Issue
Block a user