File tree 4 files changed +6
-6
lines changed
frontend/orca_data_converter/src/app
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- < div class ="filter-wrapper row " *ngIf ="dashboard == '/' ">
1
+ < div class ="filter-wrapper row " *ngIf ="gaussianDashboard == '/' ">
2
2
< div class ="col-md-3 offset-md-3 ">
3
- < app-dashboard appendTo ="body " [options] ="options " (onPanelHide) ="onPanelHide($event) "> </ app-dashboard >
3
+ < app-gaussianDashboard appendTo ="body " [options] ="options " (onPanelHide) ="onPanelHide($event) "> </ app-gaussianDashboard >
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
- dashboard :any ;
11
+ gaussianDashboard :any ;
12
12
13
13
14
14
constructor ( private http : HttpClient ) {
15
- this . dashboard = window . location . pathname
15
+ this . gaussianDashboard = window . location . pathname
16
16
}
17
17
18
18
async ngOnInit ( ) : Promise < void > {
Original file line number Diff line number Diff line change @@ -6,11 +6,11 @@ import { BrowserAnimationsModule }
6
6
from "@angular/platform-browser/animations" ;
7
7
import { AppRoutingModule } from './app-routing.module' ;
8
8
import { AppComponent } from './app.component' ;
9
+ import { GDashboardComponent } from './views/gaussianDashboard/gdashboard.component' ;
9
10
import { DashboardComponent } from './views/dashboard/dashboard.component' ;
10
11
import { MultiSelectModule } from "primeng/multiselect" ;
11
12
import { Dashboard1Component } from './views/dashboard1/dashboard1.component' ;
12
13
import { HttpClientModule } from "@angular/common/http" ;
13
- import { GDashboardComponent } from './views/gaussianDashboard/gdashboard.component' ;
14
14
15
15
@NgModule ( {
16
16
declarations : [
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ <h3>Upload your Gaussian data file </h3>
7
7
< div class ="background-image "> </ div >
8
8
9
9
< div >
10
- < input type ="file " (change) ="onFileSelected($event) " accept =".txt ">
10
+ < input type ="file " (change) ="onFileSelected($event) " accept =".log ">
11
11
< button class ="Submit " (click) ="onUpload() "> Submit</ button >
12
12
</ div >
13
13
You can’t perform that action at this time.
0 commit comments