fix(edit-monitor): Make json capitalised

Co-authored-by: Adam Stachowicz <saibamenppl@gmail.com>
This commit is contained in:
Bert Verhelst 2021-10-04 11:29:43 +02:00 committed by GitHub
parent 3f0b85e5a8
commit 7ee89fab5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -441,7 +441,7 @@ export default {
try {
JSON.parse(this.monitor.body);
} catch (err) {
toast.error(this.$t("The request body is not valid json: ") + err.message);
toast.error(this.$t("The request body is not valid JSON: ") + err.message);
return false;
}
}