Skip to content

Commit 59ae128

Browse files
committed
Moved Dependency graph Folder to Component Folder
1 parent ad57347 commit 59ae128

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed

src/app/app.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { MappingComponent } from './component/mapping/mapping.component';
1919
import { ReadmeToHtmlComponent } from './component/readme-to-html/readme-to-html.component';
2020
import { UsageComponent } from './component/usage/usage.component';
2121
import { AboutUsComponent } from './component/about-us/about-us.component';
22-
import { DependencyGraphComponent } from './dependency-graph/dependency-graph.component';
22+
import { DependencyGraphComponent } from './component/dependency-graph/dependency-graph.component';
2323

2424

2525
@NgModule({

src/app/dependency-graph/dependency-graph.component.css renamed to src/app/component/dependency-graph/dependency-graph.component.css

File renamed without changes.

src/app/dependency-graph/dependency-graph.component.html renamed to src/app/component/dependency-graph/dependency-graph.component.html

File renamed without changes.

src/app/dependency-graph/dependency-graph.component.spec.ts renamed to src/app/component/dependency-graph/dependency-graph.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
import { HttpClient, HttpHandler } from '@angular/common/http';
33
import { ComponentFixture, TestBed } from '@angular/core/testing';
4-
import { ymlService } from '../service/yaml-parser/yaml-parser.service';
4+
import { ymlService } from '../../service/yaml-parser/yaml-parser.service';
55
import { DependencyGraphComponent } from './dependency-graph.component';
66

77
describe('DependencyGraphComponent', () => {

src/app/dependency-graph/dependency-graph.component.ts renamed to src/app/component/dependency-graph/dependency-graph.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Component, OnInit, Input } from '@angular/core';
22
import * as d3 from 'd3'
3-
import { ymlService } from '../service/yaml-parser/yaml-parser.service';
3+
import { ymlService } from 'src/app/service/yaml-parser/yaml-parser.service';
44

55
export interface graphNodes{
66
id:string

src/app/component/mapping/mapping.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
102102
</table>
103103

104-
<table id="excel-table" >
104+
<table id="excel-table" class="hide">
105105
<tr>
106106
<th>Dimension</th>
107107
<th>Sub Dimension</th>

0 commit comments

Comments
 (0)