Skip to content
Snippets Groups Projects
Commit cdcd25cf authored by Hamza HRAMCHI's avatar Hamza HRAMCHI
Browse files

FEAT #13271 TIME 0:05 display information with defined structure

parent 54055237
No related branches found
No related tags found
No related merge requests found
...@@ -124,7 +124,9 @@ export class SearchResultListComponent implements OnInit, OnDestroy { ...@@ -124,7 +124,9 @@ export class SearchResultListComponent implements OnInit, OnDestroy {
@ViewChild('appPanelList', { static: false }) appPanelList: PanelListComponent; @ViewChild('appPanelList', { static: false }) appPanelList: PanelListComponent;
@ViewChild('appFilterToolAdvSearch', { static: false }) appFilterToolAdvSearch: FilterToolComponent; @ViewChild('appFilterToolAdvSearch', { static: false }) appFilterToolAdvSearch: FilterToolComponent;
currentSelectedChrono: string = ''; currentSelectedChrono: string = '';
templateColumns: number = 7;
@ViewChild(MatPaginator, { static: true }) paginator: MatPaginator; @ViewChild(MatPaginator, { static: true }) paginator: MatPaginator;
@ViewChild('tableBasketListSort', { static: true }) sort: MatSort; @ViewChild('tableBasketListSort', { static: true }) sort: MatSort;
...@@ -265,6 +267,7 @@ export class SearchResultListComponent implements OnInit, OnDestroy { ...@@ -265,6 +267,7 @@ export class SearchResultListComponent implements OnInit, OnDestroy {
// Flip flag to show that loading has finished. // Flip flag to show that loading has finished.
this.isLoadingResults = false; this.isLoadingResults = false;
data = this.processPostData(data); data = this.processPostData(data);
this.templateColumns = data.templateColumns;
// FOR TEST // FOR TEST
const filters = { const filters = {
categories: [ categories: [
......
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