Add translation for incident error message

pull/902/head
Ivan 3 years ago
parent 42ce34b6c7
commit 19dd11d624

@ -324,6 +324,7 @@ export default {
light: "light", light: "light",
dark: "dark", dark: "dark",
Post: "Post", Post: "Post",
"Please input title and content": "Please input title and content",
Created: "Created", Created: "Created",
"Last Updated": "Last Updated", "Last Updated": "Last Updated",
Unpin: "Unpin", Unpin: "Unpin",

@ -536,7 +536,7 @@ export default {
postIncident() { postIncident() {
if (this.incident.title == "" || this.incident.content == "") { if (this.incident.title == "" || this.incident.content == "") {
toast.error("Please input title and content."); toast.error(this.$t("Please input title and content"));
return; return;
} }

Loading…
Cancel
Save