Skip to content

Commit

Permalink
Merge pull request #10 from qvest-digital/throughputChart
Browse files Browse the repository at this point in the history
try computing new SLE value, but not redrawing not working
  • Loading branch information
meltzow authored Aug 19, 2024
2 parents 46972d4 + f2c6a3b commit 853e492
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export const routes: Routes = [
{path: WORK_ITEM_AGE, component: WorkItemAgePage},
{path: THROUGHPUT, component: ThroughputPageComponent},
{path: CYCLE_TIME, component: CycleTimePage},
{path: MANAGE_DATASETS, component: ManageDatasetsComponent},
{path: MANAGE_DATASETS + '/:id', component: EditDatasetComponent},
{path: CREATE_DATASETS, component: EditDatasetComponent},
];
Expand Down
3 changes: 2 additions & 1 deletion src/app/components/layout/layout.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {MatFormFieldModule} from "@angular/material/form-field";
import {StorageService} from "../../services/storage.service";
import {Dataset, DataSetType} from "../../models/dataset";
import {ToastrService} from "ngx-toastr";
import {CYCLE_TIME, DASHBOARD, THROUGHPUT, WORK_ITEM_AGE} from "../../app-routing.module";
import {CYCLE_TIME, DASHBOARD, MANAGE_DATASETS, THROUGHPUT, WORK_ITEM_AGE} from "../../app-routing.module";
import {JiraDataCenterService} from "../../services/jira-data-center.service";
import {JiraCloudService} from "../../services/jira-cloud.service";
import {WorkItemAgeChartComponent} from "../work-item-age-chart/work-item-age-chart.component";
Expand Down Expand Up @@ -143,4 +143,5 @@ export class LayoutComponent implements OnInit {
}

protected readonly THROUGHPUT = THROUGHPUT;
protected readonly MANAGE_DATASETS = MANAGE_DATASETS;
}

0 comments on commit 853e492

Please sign in to comment.