-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. Add a way to check the current version of the app Bugs Corrected: To Be Corrected: 0. On product delete, delete trace results 1. On product delete, delete flamegraph result
- Loading branch information
1 parent
9395dfa
commit 58a5286
Showing
14 changed files
with
295 additions
and
202 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
...ages/incident_manager/incident-manager-chooser/incident-manager-chooser-routing.module.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { Routes, RouterModule } from '@angular/router'; | ||
|
||
import { IncidentManagerChooserPage } from './incident-manager-chooser.page'; | ||
|
||
const routes: Routes = [ | ||
{ | ||
path: '', | ||
component: IncidentManagerChooserPage | ||
} | ||
]; | ||
|
||
@NgModule({ | ||
imports: [RouterModule.forChild(routes)], | ||
exports: [RouterModule], | ||
}) | ||
export class IncidentManagerChooserPageRoutingModule {} |
22 changes: 22 additions & 0 deletions
22
src/app/pages/incident_manager/incident-manager-chooser/incident-manager-chooser.module.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { FormsModule } from '@angular/forms'; | ||
|
||
import { IonicModule } from '@ionic/angular'; | ||
|
||
import { IncidentManagerChooserPageRoutingModule } from './incident-manager-chooser-routing.module'; | ||
|
||
import { IncidentManagerChooserPage } from './incident-manager-chooser.page'; | ||
import {ComponentsModule} from "../../../components/components.module"; | ||
|
||
@NgModule({ | ||
imports: [ | ||
CommonModule, | ||
FormsModule, | ||
IonicModule, | ||
IncidentManagerChooserPageRoutingModule, | ||
ComponentsModule | ||
], | ||
declarations: [IncidentManagerChooserPage] | ||
}) | ||
export class IncidentManagerChooserPageModule {} |
7 changes: 7 additions & 0 deletions
7
src/app/pages/incident_manager/incident-manager-chooser/incident-manager-chooser.page.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<app-header [title]="'Incident Manager Chooser'"></app-header> | ||
|
||
<ion-content [fullscreen]="true"> | ||
<ion-grid> | ||
<app-title [title]="'Incident Manager Chooser'"></app-title> | ||
</ion-grid> | ||
</ion-content> |
Empty file.
17 changes: 17 additions & 0 deletions
17
...app/pages/incident_manager/incident-manager-chooser/incident-manager-chooser.page.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
import { IncidentManagerChooserPage } from './incident-manager-chooser.page'; | ||
|
||
describe('IncidentManagerChooserPage', () => { | ||
let component: IncidentManagerChooserPage; | ||
let fixture: ComponentFixture<IncidentManagerChooserPage>; | ||
|
||
beforeEach(() => { | ||
fixture = TestBed.createComponent(IncidentManagerChooserPage); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
15 changes: 15 additions & 0 deletions
15
src/app/pages/incident_manager/incident-manager-chooser/incident-manager-chooser.page.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-incident-manager-chooser', | ||
templateUrl: './incident-manager-chooser.page.html', | ||
styleUrls: ['./incident-manager-chooser.page.scss'], | ||
}) | ||
export class IncidentManagerChooserPage implements OnInit { | ||
|
||
constructor() { } | ||
|
||
ngOnInit() { | ||
} | ||
|
||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.