Skip to content

Commit

Permalink
Update Chat.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
Griefed authored Dec 29, 2021
1 parent 1ab0bf1 commit 25781a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/Chat.vue
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export class MessageHelper
let escaped = this.escapeInput(text, true);
//Verwendet axios für einen GET request an unser backend und erstellt eine neue Chatmessage anhand des Rückgabewerts.
//Falls das backend nicht erreichbar ist, wird eine Fehlermeldung ausgegeben.
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment @typescript-eslint/no-explicit-any @typescript-eslint/no-unsafe-argument
// eslint-disable-next-line
void axios.get(REQUEST_URL + escaped).then(response => { this.AddMessage(response.data, false); })
.catch(function (error) { alert(error); });
}
Expand Down

0 comments on commit 25781a8

Please sign in to comment.