src/app/features/task-view-customizer/task-view-customizer-panel/task-view-customizer-panel.component.html
sort{{ T.F.TASK_VIEW.CUSTOMIZER.SORT | translate }} @if (customizerService.selectedSort().type) { {{ customizerService.selectedSort().label | translate }} } group_work{{ T.F.TASK_VIEW.CUSTOMIZER.GROUP_BY | translate }} @if (customizerService.selectedGroup().type) { {{ customizerService.selectedGroup().label | translate }} } filter_alt{{ T.F.TASK_VIEW.CUSTOMIZER.FILTER_BY | translate }} @if (customizerService.selectedFilter().type) { {{ customizerService.selectedFilter().label | translate }} } refresh{{ T.F.TASK_VIEW.CUSTOMIZER.RESET_ALL | translate }} @for (opt of OPTIONS.sort.list; track opt.type) { {{ opt.label | translate }} @if (customizerService.selectedSort().type === opt.type) { @if (opt.type) { {{ opt.order === OPTIONS.sort.order.ASC ? 'arrow_downward' : 'arrow_upward' }} } @else { check } } } save {{ T.F.TASK_VIEW.CUSTOMIZER.SAVE_SORT | translate }} @for (opt of customizerService.availableGroupOptions(); track opt.type) { {{ opt.label | translate }} @if (customizerService.selectedGroup().type === opt.type) { check } } {{ T.F.TASK_VIEW.CUSTOMIZER.FILTER_DEFAULT | translate }} @if (!customizerService.selectedFilter().type) { check } {{ T.F.TASK_VIEW.CUSTOMIZER.FILTER_TAG | translate }} @if (customizerService.selectedFilter().type === OPTIONS.filter.types.tag) { check } {{ T.F.TASK_VIEW.CUSTOMIZER.FILTER_PROJECT | translate }} @if (customizerService.selectedFilter().type === OPTIONS.filter.types.project) { check } {{ T.F.TASK_VIEW.CUSTOMIZER.FILTER_SCHEDULED_DATE | translate }} @if ( customizerService.selectedFilter().type === OPTIONS.filter.types.scheduledDate ) { check } {{ T.F.TASK_VIEW.CUSTOMIZER.FILTER_DEADLINE | translate }} @if (customizerService.selectedFilter().type === OPTIONS.filter.types.deadline) { check } {{ T.F.TASK_VIEW.CUSTOMIZER.FILTER_ESTIMATED_TIME | translate }} @if ( customizerService.selectedFilter().type === OPTIONS.filter.types.estimatedTime ) { check } {{ T.F.TASK_VIEW.CUSTOMIZER.FILTER_TIME_SPENT | translate }} @if (customizerService.selectedFilter().type === OPTIONS.filter.types.timeSpent) { check } {{ T.F.TASK_VIEW.CUSTOMIZER.FILTER_NOT_SPECIFIED | translate }} @if ( customizerService.selectedFilter().type === OPTIONS.filter.types.tag && customizerService.selectedFilter().preset === FILTER_COMMON.NOT_SPECIFIED ) { check }