fix delete

This commit is contained in:
_Bastler 2021-11-21 16:48:04 +01:00
parent 185f28e262
commit 55c956bde4
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ export class EntriesService {
}
delete(id: number) {
return this.http.delete(environment.apiUrl + "/entries/" + id);
return this.http.delete(environment.apiUrl + "/entries" + id);
}
titleHelper(url: string) {