Fix cannot view archived components on UI

Issue-ID: SDC-4416
Signed-off-by: JvD_Ericsson <jeff.van.dam@est.tech>
Change-Id: Ie24af434a1e983d2e7c972a117f8806bf981650e
diff --git a/catalog-ui/src/app/ng2/services/catalog.service.ts b/catalog-ui/src/app/ng2/services/catalog.service.ts
index 02ba330..61d4b0d 100644
--- a/catalog-ui/src/app/ng2/services/catalog.service.ts
+++ b/catalog-ui/src/app/ng2/services/catalog.service.ts
@@ -58,7 +58,7 @@
 
     public getArchiveCatalog() {
         return this.http.get<IComponentsArray>(this.baseUrl + '/v1/catalog/archive/', {})
-            .map(res => this.processComponentsResponse(res[0]));
+            .map(res => this.processComponentsResponse([res, []]));
     }
 
     private processComponentsResponse(componentsArr: [IComponentsArray, DataTypeModel[]], addSharing:boolean = false) {