Skip to content

Commit

Permalink
Fix lint errors #7108
Browse files Browse the repository at this point in the history
  • Loading branch information
reisfmb authored and alansemenov committed Nov 29, 2023
1 parent 31cbc86 commit 024f412
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ interface DATA {
displayName: string
iconHTML: string,
language: string
parentIds: Array<string>
parentIds: string[]
group?: string
}

type D3SVG = d3.Selection<SVGSVGElement, unknown, HTMLElement, any>;
type D3SVG = d3.Selection<SVGSVGElement, unknown, HTMLElement, unknown>;

type D3SVGG = d3.Selection<SVGGElement, unknown | string, HTMLElement | SVGGElement, any>;
type D3SVGG = d3.Selection<SVGGElement, string, HTMLElement | SVGGElement, unknown>;

export class ProjectDAGVisualization extends DivEl{
private static TEXTS_LEFT = 45;
Expand All @@ -27,10 +27,10 @@ export class ProjectDAGVisualization extends DivEl{
private static RECT_HEIGHT = 50;
private static RECT_LEFT = 60;
private static RECT_BG_COLOR = '#ffffff';
private static PATH_COLOR = '#343434'
private static PATH_COLOR = '#343434';

private allProjects: Project[];
private data: Array<DATA>;
private data: DATA[];
private svgContainerId: string = 'svg-container';

constructor(projectId?: string) {
Expand Down

0 comments on commit 024f412

Please sign in to comment.