File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
src/app/component/mapping Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 155
155
< th > Dimension</ th >
156
156
< th > Sub Dimension</ th >
157
157
< th > Activity</ th >
158
+ < th > Level</ th >
158
159
< th > Description</ th >
159
160
< th > Risk</ th >
160
161
< th > Measure</ th >
193
194
{{ item.activityName | slice : 0 : 32767 }}
194
195
</ ng-container >
195
196
</ td >
197
+ < td >
198
+ < ng-container *ngIf ="item.level ">
199
+ {{ '' + item.level | slice : 0 : 32767 }}
200
+ </ ng-container >
201
+ </ td >
196
202
< td >
197
203
< ng-container *ngIf ="item.description && item.description.length > 0 ">
198
204
{{ item.description | slice : 0 : 32767 }}
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ export interface MappingElementSortedByISO17 {
44
44
dependsOn : string [ ] ;
45
45
comments : string ;
46
46
assessment : string ;
47
+ level : number ;
47
48
implementation : any ;
48
49
teamImplementation : {
49
50
[ key : string ] : boolean ;
@@ -345,6 +346,8 @@ export class MappingComponent implements OnInit {
345
346
var CurrentTeamsEvidence =
346
347
this . YamlObject [ dim ] [ subDim ] [ activity ] [ 'teamsEvidence' ] ;
347
348
349
+ var CurrentActivityLevel = this . YamlObject [ dim ] [ subDim ] [ activity ] [ 'level' ] ;
350
+
348
351
this . temporaryMappingElement = {
349
352
dimension : dim ,
350
353
subDimension : subDim ,
@@ -360,6 +363,7 @@ export class MappingComponent implements OnInit {
360
363
resources : CurrentResources ,
361
364
usefulness : CurrentUsefulness ,
362
365
dependsOn : CurrentDependsOn ,
366
+ level : CurrentActivityLevel ,
363
367
implementation : CurrentImplementation ,
364
368
comments : CurrentComments ,
365
369
assessment : CurrentAssessment ,
You can’t perform that action at this time.
0 commit comments