File tree Expand file tree Collapse file tree
src/app/component/circular-heatmap Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -85,15 +85,10 @@ export class CircularHeatmapComponent implements OnInit {
8585
8686 private LoadMaturityDataFromGeneratedYaml ( ) {
8787 return new Promise < void > ( ( resolve , reject ) => {
88- console . log (
89- `${ this . perfNow ( ) } s: LoadMaturityDataFromGeneratedYaml Fetch`
90- ) ;
88+ console . log ( `${ this . perfNow ( ) } s: LoadMaturityData Fetch` ) ;
9189 this . yaml . setURI ( './assets/YAML/generated/generated.yaml' ) ;
92-
9390 this . yaml . getJson ( ) . subscribe ( data => {
94- console . log (
95- `${ this . perfNow ( ) } s: LoadMaturityDataFromGeneratedYaml Downloaded`
96- ) ;
91+ console . log ( `${ this . perfNow ( ) } s: LoadMaturityData Downloaded` ) ;
9792 this . YamlObject = data ;
9893 this . AddSegmentLabels ( this . YamlObject ) ;
9994 const localStorageData = this . getDatasetFromBrowserStorage ( ) ;
@@ -144,9 +139,7 @@ export class CircularHeatmapComponent implements OnInit {
144139 this . segment_labels
145140 ) ;
146141 this . noActivitytoGrey ( ) ;
147- console . log (
148- `${ this . perfNow ( ) } s: LoadMaturityDataFromGeneratedYaml End`
149- ) ;
142+ console . log ( `${ this . perfNow ( ) } s: LoadMaturityData End` ) ;
150143 resolve ( ) ;
151144 } ) ;
152145 } ) ;
You can’t perform that action at this time.
0 commit comments