Skip to content

Commit 54deb2d

Browse files
committed
undo moving comments
1 parent 993ff22 commit 54deb2d

File tree

1 file changed

+8
-4
lines changed
  • datahub-web-react/src/app/lineage

1 file changed

+8
-4
lines changed

datahub-web-react/src/app/lineage/types.ts

+8-4
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,13 @@ export type LineageExpandParams = {
3535

3636
export type FetchedEntity = {
3737
urn: string;
38-
name: string; // name to be shown on expansion if available
38+
name: string;
39+
// name to be shown on expansion if available
3940
expandedName?: string;
4041
type: EntityType;
4142
subtype?: string;
42-
icon?: string; // children?: Array<string>;
43+
icon?: string;
44+
// children?: Array<string>;
4345
upstreamChildren?: Array<EntityAndType>;
4446
upstreamRelationships?: Array<LineageRelationship>;
4547
numUpstreamChildren?: number;
@@ -60,13 +62,15 @@ export type FetchedEntity = {
6062

6163
export type NodeData = {
6264
urn?: string;
63-
name: string; // name to be shown on expansion if available
65+
name: string;
66+
// name to be shown on expansion if available
6467
expandedName?: string;
6568
type?: EntityType;
6669
subtype?: string;
6770
children?: Array<NodeData>;
6871
unexploredChildren?: number;
69-
icon?: string; // Hidden children are unexplored but in the opposite direction of the flow of the graph.
72+
icon?: string;
73+
// Hidden children are unexplored but in the opposite direction of the flow of the graph.
7074
// Currently our visualization does not support expanding in two directions
7175
countercurrentChildrenUrns?: string[];
7276
platform?: DataPlatform;

0 commit comments

Comments
 (0)