Skip to content

Commit f730774

Browse files
Revert the children field from FileClass since it's not supported in 1.11.x
1 parent de6f12f commit f730774

1 file changed

Lines changed: 0 additions & 33 deletions

File tree

  • openmetadata-ui/src/main/resources/ui/playwright/support/entity

openmetadata-ui/src/main/resources/ui/playwright/support/entity/FileClass.ts

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,11 @@ export class FileClass extends EntityClass {
6464
},
6565
},
6666
};
67-
children: FileChildrenDetails[];
6867
entity: {
6968
name: string;
7069
displayName: string;
7170
service: string;
7271
description: string;
73-
columns?: FileChildrenDetails[];
7472
};
7573

7674
serviceResponseData: ResponseDataType = {} as ResponseDataType;
@@ -84,42 +82,11 @@ export class FileClass extends EntityClass {
8482
this.serviceCategory = SERVICE_TYPE.DriveService;
8583
this.serviceType = ServiceTypes.DRIVE_SERVICES;
8684
this.childrenSelectorId = `${this.service.name}.${this.fileName}`;
87-
this.children = [
88-
{
89-
name: 'sample_column_1',
90-
dataType: 'BITMAP',
91-
},
92-
{
93-
name: 'sample_column_2',
94-
dataType: 'BITMAP',
95-
children: [
96-
{
97-
name: 'nested_column_1',
98-
dataType: 'BITMAP',
99-
children: [
100-
{
101-
name: 'deeply_nested_column_1',
102-
dataType: 'BIGINT',
103-
},
104-
{
105-
name: 'deeply_nested_column_2',
106-
dataType: 'BIGINT',
107-
},
108-
],
109-
},
110-
{
111-
name: 'nested_column_2',
112-
dataType: 'BIGINT',
113-
},
114-
],
115-
},
116-
];
11785
this.entity = {
11886
name: this.fileName,
11987
displayName: this.fileName,
12088
service: this.service.name,
12189
description: 'description',
122-
columns: this.children,
12390
};
12491
}
12592

0 commit comments

Comments
 (0)