From f3d810ecd8af152b2943d0d80ee0d870e33488b6 Mon Sep 17 00:00:00 2001 From: dweinholz Date: Wed, 3 May 2023 14:00:50 +0200 Subject: [PATCH] fix(Application):using shortname instead of perun_name --- .../application.model/application.model.ts | 1 - .../facilityprojectsoverview.component.html | 4 ++-- .../facilityprojectsoverview.component.ts | 4 ++-- src/app/projectmanagement/overview.component.html | 2 +- src/app/projectmanagement/overview.component.ts | 2 +- src/app/vo_manager/voOverview.component.html | 10 +++++----- 6 files changed, 11 insertions(+), 12 deletions(-) diff --git a/src/app/applications/application.model/application.model.ts b/src/app/applications/application.model/application.model.ts index 9a7cb89900..c44a14bd52 100644 --- a/src/app/applications/application.model/application.model.ts +++ b/src/app/applications/application.model/application.model.ts @@ -18,7 +18,6 @@ export class Application { project_application_report_allowed: boolean = false; project_application_name: string; project_application_shortname: string; - perun_name: string; project_application_institute: string; project_application_workgroup: string; project_application_lifetime: number; diff --git a/src/app/facility_manager/facilityprojectsoverview.component.html b/src/app/facility_manager/facilityprojectsoverview.component.html index 0d5c5a9f70..9415f8682b 100644 --- a/src/app/facility_manager/facilityprojectsoverview.component.html +++ b/src/app/facility_manager/facilityprojectsoverview.component.html @@ -295,7 +295,7 @@ class="btn btn-secondary" data-toggle="modal" (click)=" - showMembersOfTheProject(project.project_application_perun_id, project.perun_name); + showMembersOfTheProject(project.project_application_perun_id, project.project_application_shortname); usersModal.show() " > @@ -403,7 +403,7 @@

- {{ project_application?.perun_name }} + {{ project_application?.project_application_shortname }}

@@ -821,13 +821,13 @@