diff --git a/src/app/component/mapping/mapping.component.html b/src/app/component/mapping/mapping.component.html
index 3f8cefb7..d0898b21 100644
--- a/src/app/component/mapping/mapping.component.html
+++ b/src/app/component/mapping/mapping.component.html
@@ -155,6 +155,7 @@
Dimension |
Sub Dimension |
Activity |
+ Level |
Description |
Risk |
Measure |
@@ -193,6 +194,11 @@
{{ item.activityName | slice : 0 : 32767 }}
+
+
+ {{ '' + item.level | slice : 0 : 32767 }}
+
+ |
0">
{{ item.description | slice : 0 : 32767 }}
diff --git a/src/app/component/mapping/mapping.component.ts b/src/app/component/mapping/mapping.component.ts
index 254859f5..54b81780 100644
--- a/src/app/component/mapping/mapping.component.ts
+++ b/src/app/component/mapping/mapping.component.ts
@@ -44,6 +44,7 @@ export interface MappingElementSortedByISO17 {
dependsOn: string[];
comments: string;
assessment: string;
+ level: number;
implementation: any;
teamImplementation: {
[key: string]: boolean;
@@ -345,6 +346,8 @@ export class MappingComponent implements OnInit {
var CurrentTeamsEvidence =
this.YamlObject[dim][subDim][activity]['teamsEvidence'];
+ var CurrentActivityLevel = this.YamlObject[dim][subDim][activity]['level'];
+
this.temporaryMappingElement = {
dimension: dim,
subDimension: subDim,
@@ -360,6 +363,7 @@ export class MappingComponent implements OnInit {
resources: CurrentResources,
usefulness: CurrentUsefulness,
dependsOn: CurrentDependsOn,
+ level: CurrentActivityLevel,
implementation: CurrentImplementation,
comments: CurrentComments,
assessment: CurrentAssessment,
|