Merge branch 'master' into patch-6

This commit is contained in:
Andreas Brett
2021-10-23 01:52:54 +02:00
committed by GitHub
22 changed files with 806 additions and 81 deletions

View File

@@ -472,7 +472,7 @@ export default {
return;
}
// Beautiful the JSON format
// Beautify the JSON format
if (this.monitor.body) {
this.monitor.body = JSON.stringify(JSON.parse(this.monitor.body), null, 4);
}

View File

@@ -75,7 +75,7 @@ export default {
this.processing = true;
if (this.password !== this.repeatPassword) {
toast.error("Repeat password do not match.");
toast.error(this.$t("PasswordsDoNotMatch"));
this.processing = false;
return;
}