Skip to content

Commit

Permalink
Fixed columnKeyTemplate and defaultSortTemplate variables
Browse files Browse the repository at this point in the history
  • Loading branch information
sofiaIvarsRitense committed May 15, 2024
1 parent 12be616 commit 922afca
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ import {DocumentenApiColumnModalComponent} from '../documenten-api-column-modal/
],
})
export class DocumentenApiColumnsComponent implements AfterViewInit {
@ViewChild('columnKeyTemplate') public columnKeyTemplate: TemplateRef<any>;
@ViewChild('defaultSortTemplate') public defaultSortTemplate: TemplateRef<any>;
@ViewChild('columnKeyTemplate') public readonly columnKeyTemplate: TemplateRef<any>;
@ViewChild('defaultSortTemplate') public readonly defaultSortTemplate: TemplateRef<any>;

private readonly _reload$ = new BehaviorSubject<null | 'noAnimation'>(null);

Expand Down

0 comments on commit 922afca

Please sign in to comment.