Skip to content
Snippets Groups Projects
Verified Commit 15a5c739 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

fix /

parent a2e4cab1
No related branches found
No related tags found
No related merge requests found
...@@ -86,7 +86,7 @@ export class IndexingModelsAdministrationComponent implements OnInit { ...@@ -86,7 +86,7 @@ export class IndexingModelsAdministrationComponent implements OnInit {
this.dialogRef.afterClosed().pipe( this.dialogRef.afterClosed().pipe(
filter((data: string) => data === 'ok'), filter((data: string) => data === 'ok'),
exhaustMap(() => this.http.delete('../../rest/indexingModels' + indexingModel.id)), exhaustMap(() => this.http.delete('../../rest/indexingModels/' + indexingModel.id)),
tap((data: any) => { tap((data: any) => {
this.indexingModels = data.indexingModels; this.indexingModels = data.indexingModels;
this.dataSource = new MatTableDataSource(this.indexingModels); this.dataSource = new MatTableDataSource(this.indexingModels);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment