File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -84,10 +84,9 @@ function hiddenComponentClassName(component: string) {
84
84
*/
85
85
export class TaskLayout extends QueryLayout {
86
86
public taskListHiddenClasses ( ) : string [ ] {
87
- return this . _taskListHiddenClasses ;
87
+ return [ ... this . applyTaskLayoutOptions ( ) , ... this . applyQueryLayoutOptions ( ) ] ;
88
88
}
89
89
private taskLayoutOptions : TaskLayoutOptions ;
90
- private _taskListHiddenClasses : string [ ] = [ ] ;
91
90
92
91
constructor ( taskLayoutOptions ?: TaskLayoutOptions , queryLayoutOptions ?: QueryLayoutOptions ) {
93
92
super ( queryLayoutOptions ) ;
@@ -97,8 +96,6 @@ export class TaskLayout extends QueryLayout {
97
96
} else {
98
97
this . taskLayoutOptions = new TaskLayoutOptions ( ) ;
99
98
}
100
-
101
- this . _taskListHiddenClasses = [ ...this . applyTaskLayoutOptions ( ) , ...this . applyQueryLayoutOptions ( ) ] ;
102
99
}
103
100
private applyTaskLayoutOptions ( ) {
104
101
const taskListHiddenClasses : string [ ] = [ ] ;
You can’t perform that action at this time.
0 commit comments