From 2890ed3047611002d84fbe32b98fa05ce8357fd9 Mon Sep 17 00:00:00 2001
From: rsanchez <rsanchez@curisit.net>
Date: Fri, 30 Jun 2017 14:37:45 +0000
Subject: [PATCH] #0 fix - Fixed metadata visualization in license form

---
 securis/src/main/webapp/src/app/forms/license.form.component.ts |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/securis/src/main/webapp/src/app/forms/license.form.component.ts b/securis/src/main/webapp/src/app/forms/license.form.component.ts
index 2476667..381bee0 100644
--- a/securis/src/main/webapp/src/app/forms/license.form.component.ts
+++ b/securis/src/main/webapp/src/app/forms/license.form.component.ts
@@ -21,6 +21,7 @@
 
   @ViewChild('requestFileUploader') requestFileUploader : TdFileInputComponent;
   license_menu_options = LICENSE_ACTIONS;
+	metadata: any[];
   pack: any = null;
 
   constructor(private http: Http,
@@ -131,7 +132,7 @@
       this.packs.get(packId).subscribe(
           packData => {
             this.pack = packData;
-            this.data.metadata = packData.metadata;
+            this.metadata = packData.metadata;
           },
           err => console.error(err)
         );

--
Gitblit v1.3.2