Skip to content

Commit

Permalink
New Features:
Browse files Browse the repository at this point in the history
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
juanfranciscocis committed Sep 23, 2024
1 parent 9395dfa commit 58a5286
Show file tree
Hide file tree
Showing 14 changed files with 295 additions and 202 deletions.
407 changes: 208 additions & 199 deletions src/app/app-routing.module.ts

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ export class AppComponent implements OnInit {
url:'/load-test-chooser',
icon:'barbell'
},
{
title:'Incident Manager',
url:'/incident-manager-chooser',
icon:'alert-circle'
},
{
title: 'My Team',
url: '/myteam',
Expand Down
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 {}
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 {}
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.
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();
});
});
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() {
}

}
1 change: 1 addition & 0 deletions www/1133.d013d5a63328bc50.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@

<body>
<app-root></app-root>
<script src="runtime.60441e3dd5e2d7b5.js" type="module"></script><script src="polyfills.e9ea84778c1ce49f.js" type="module"></script><script src="main.30f5c7f9a1312325.js" type="module"></script></body>
<script src="runtime.84ab9547cd214203.js" type="module"></script><script src="polyfills.e9ea84778c1ce49f.js" type="module"></script><script src="main.309ffff306dd86f3.js" type="module"></script></body>

</html>
1 change: 1 addition & 0 deletions www/main.309ffff306dd86f3.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion www/main.30f5c7f9a1312325.js

This file was deleted.

1 change: 0 additions & 1 deletion www/runtime.60441e3dd5e2d7b5.js

This file was deleted.

1 change: 1 addition & 0 deletions www/runtime.84ab9547cd214203.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 58a5286

Please sign in to comment.