From ff7459aec1f02a6ef1adccff2bc6a8d6165a0d70 Mon Sep 17 00:00:00 2001
From: Sebastian-Ion TINCU <Sebastian-Ion.TINCU@ext.ec.europa.eu>
Date: Wed, 25 Sep 2024 13:25:59 +0200
Subject: [PATCH] EDELIVERY-11674 - Alerts UI Improvements

[PR] Remove the logic for the review task since not used.
---
 .../review-tasks-controller.ts                | 29 +------------------
 1 file changed, 1 insertion(+), 28 deletions(-)

diff --git a/smp-angular/src/app/common/panels/review-tasks-panel/review-tasks-controller.ts b/smp-angular/src/app/common/panels/review-tasks-panel/review-tasks-controller.ts
index 463d17a26..ecd8b7dc1 100644
--- a/smp-angular/src/app/common/panels/review-tasks-panel/review-tasks-controller.ts
+++ b/smp-angular/src/app/common/panels/review-tasks-panel/review-tasks-controller.ts
@@ -34,34 +34,7 @@ export class ReviewTasksController implements SearchTableController {
   }
 
   public showDetails(row: any): MatDialogRef<any> {
-    return this.dialog.open(ObjectPropertiesDialogComponent, {
-      data: {
-        i18n: "review.edit.dialog.title",
-        object: [{
-          i18n: "review.edit.panel.label.column.review.date",
-          value: row.row?.lastUpdatedOn,
-          type: "dateTime"
-        }, {
-          i18n: "review.edit.panel.label.column.target",
-          value: row.row?.target,
-        }, {
-          i18n: "review.edit.panel.label.column.version",
-          value: row.row?.version,
-        }, {
-          i18n: "review.edit.panel.label.column.resource.scheme",
-          value: row.row?.resourceIdentifierScheme,
-        }, {
-          i18n: "review.edit.panel.label.column.resource.value",
-          value: row.row?.resourceIdentifierValue,
-        }, {
-          i18n: "review.edit.panel.label.column.subresource.scheme",
-          value: row.row?.subresourceIdentifierScheme,
-        }, {
-          i18n: "review.edit.panel.label.column.subresource.value",
-          value: row.row?.subresourceIdentifierValue,
-        }]
-      }
-    });
+    return null;
   }
 
   public edit(row: any): MatDialogRef<any> {
-- 
GitLab