Skip to content

Commit 7b669fb

Browse files
committed
refactor: - TaskLayout no longer inherits QueryLayout
1 parent 44df021 commit 7b669fb

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/Layout/TaskLayout.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,10 @@ function hiddenComponentClassName(component: string) {
8282
* The layout is used when flattening the task to a string and when rendering queries, and can be
8383
* modified by applying {@link TaskLayoutOptions} objects.
8484
*/
85-
export class TaskLayout extends QueryLayout {
85+
export class TaskLayout {
8686
private taskLayoutOptions: TaskLayoutOptions;
8787

8888
constructor(taskLayoutOptions?: TaskLayoutOptions) {
89-
super();
90-
9189
if (taskLayoutOptions) {
9290
this.taskLayoutOptions = taskLayoutOptions;
9391
} else {

0 commit comments

Comments
 (0)