fix delete

This commit is contained in:
_Bastler 2021-11-21 16:51:20 +01:00
parent 55c956bde4
commit 1da276c670
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) {