File tree 4 files changed +7
-7
lines changed
frontend/orca_data_converter/src/app
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
import { NgModule } from '@angular/core' ;
2
2
import { RouterModule , Routes } from '@angular/router' ;
3
- import { GDashboardComponent } from './views/gaussianDashboard/gdashboard .component' ;
3
+ import { DashboardComponent } from './views/dashboard/dashboard .component' ;
4
4
5
5
const routes : Routes = [
6
- { path : 'home1' , component : GDashboardComponent }
6
+ { path : 'home1' , component : DashboardComponent }
7
7
] ;
8
8
9
9
@NgModule ( {
Original file line number Diff line number Diff line change 1
- < div class ="filter-wrapper row " *ngIf ="gaussianDashboard == '/' ">
1
+ < div class ="filter-wrapper row " *ngIf ="dashboard == '/' ">
2
2
< div class ="col-md-3 offset-md-3 ">
3
- < app-gaussianDashboard appendTo ="body " [options] ="options " (onPanelHide) ="onPanelHide($event) "> </ app-gaussianDashboard >
3
+ < app-dashboard appendTo ="body " [options] ="options " (onPanelHide) ="onPanelHide($event) "> </ app-dashboard >
4
4
</ div >
5
5
</ div >
6
6
< router-outlet > </ router-outlet >
Original file line number Diff line number Diff line change @@ -8,11 +8,11 @@ import {firstValueFrom} from 'rxjs';
8
8
styleUrls : [ './app.component.css' ]
9
9
} )
10
10
export class AppComponent implements OnInit {
11
- gaussianDashboard :any ;
11
+ dashboard :any ;
12
12
13
13
14
14
constructor ( private http : HttpClient ) {
15
- this . gaussianDashboard = window . location . pathname
15
+ this . dashboard = window . location . pathname
16
16
}
17
17
18
18
async ngOnInit ( ) : Promise < void > {
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ interface BrandsGroup {
17
17
}
18
18
19
19
@Component ( {
20
- selector : 'app-gdashboard ' ,
20
+ selector : 'app-gaussianDashboard ' ,
21
21
templateUrl : './gdashboard.component.html' ,
22
22
styleUrls : [ './gdashboard.component.css' ]
23
23
} )
You can’t perform that action at this time.
0 commit comments