@@ -213,9 +213,13 @@ export class MappingComponent implements OnInit {
213213 //console.log(this.temp)
214214 this . allMappingDataSortedByActivity . push ( this . temporaryMappingElement ) ;
215215 if ( this . YamlObject [ dim ] [ subDim ] [ activity ] [ 'isImplemented' ] ) {
216- this . performedMappingDataSortedByActivity . push ( this . temporaryMappingElement ) ;
216+ this . performedMappingDataSortedByActivity . push (
217+ this . temporaryMappingElement
218+ ) ;
217219 } else {
218- this . plannedMappingDataSortedByActivity . push ( this . temporaryMappingElement ) ;
220+ this . plannedMappingDataSortedByActivity . push (
221+ this . temporaryMappingElement
222+ ) ;
219223 }
220224 }
221225
@@ -289,7 +293,8 @@ export class MappingComponent implements OnInit {
289293 var CurrentDescription : string =
290294 this . YamlObject [ dim ] [ subDim ] [ activity ] [ 'description' ] ;
291295 var CurrentRisk : string = this . YamlObject [ dim ] [ subDim ] [ activity ] [ 'risk' ] ;
292- var CurrentMeasure : string = this . YamlObject [ dim ] [ subDim ] [ activity ] [ 'measure' ] ;
296+ var CurrentMeasure : string =
297+ this . YamlObject [ dim ] [ subDim ] [ activity ] [ 'measure' ] ;
293298 var CurrentKnowledge : string =
294299 this . knowledgeLabels [
295300 this . YamlObject [ dim ] [ subDim ] [ activity ] [ 'difficultyOfImplementation' ] [
@@ -298,7 +303,9 @@ export class MappingComponent implements OnInit {
298303 ] ;
299304 var CurrentTime : string =
300305 this . generalLabels [
301- this . YamlObject [ dim ] [ subDim ] [ activity ] [ 'difficultyOfImplementation' ] [ 'time' ]
306+ this . YamlObject [ dim ] [ subDim ] [ activity ] [ 'difficultyOfImplementation' ] [
307+ 'time'
308+ ]
302309 ] ;
303310 var CurrentResources : string =
304311 this . generalLabels [
@@ -400,7 +407,8 @@ export class MappingComponent implements OnInit {
400407 var CurrentDescription : string =
401408 this . YamlObject [ dim ] [ subDim ] [ activity ] [ 'description' ] ;
402409 var CurrentRisk : string = this . YamlObject [ dim ] [ subDim ] [ activity ] [ 'risk' ] ;
403- var CurrentMeasure : string = this . YamlObject [ dim ] [ subDim ] [ activity ] [ 'measure' ] ;
410+ var CurrentMeasure : string =
411+ this . YamlObject [ dim ] [ subDim ] [ activity ] [ 'measure' ] ;
404412 var CurrentKnowledge : string =
405413 this . knowledgeLabels [
406414 this . YamlObject [ dim ] [ subDim ] [ activity ] [ 'difficultyOfImplementation' ] [
@@ -409,7 +417,9 @@ export class MappingComponent implements OnInit {
409417 ] ;
410418 var CurrentTime : string =
411419 this . generalLabels [
412- this . YamlObject [ dim ] [ subDim ] [ activity ] [ 'difficultyOfImplementation' ] [ 'time' ]
420+ this . YamlObject [ dim ] [ subDim ] [ activity ] [ 'difficultyOfImplementation' ] [
421+ 'time'
422+ ]
413423 ] ;
414424 var CurrentResources : string =
415425 this . generalLabels [
0 commit comments