From ea3dd6a4563664f23978590817a3b6287b956ad1 Mon Sep 17 00:00:00 2001 From: Maximilian Wesener Date: Tue, 30 Jul 2024 08:42:17 +0200 Subject: [PATCH 1/3] chore(release): 1308 - Fix language mapping for semanticDataModel in notification parts table. Fixed name of part within notification parts table. --- .../notifications/detail/notification-detail.component.ts | 4 ++-- .../shared/components/parts-table/parts-table.component.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/app/modules/page/notifications/detail/notification-detail.component.ts b/frontend/src/app/modules/page/notifications/detail/notification-detail.component.ts index 4991011a03..a7f962e0dd 100644 --- a/frontend/src/app/modules/page/notifications/detail/notification-detail.component.ts +++ b/frontend/src/app/modules/page/notifications/detail/notification-detail.component.ts @@ -195,8 +195,8 @@ export class NotificationDetailComponent implements AfterViewInit, OnDestroy { private setTableConfigs(data: Notification): void { this.isReceived = !data.isFromSender; - const displayedColumns = [ 'id', 'semanticDataModel', 'name', 'semanticModelId' ]; - const sortableColumns = { id: true, semanticDataModel: true, name: true, semanticModelId: true }; + const displayedColumns = [ 'id', 'semanticDataModel', 'nameAtManufacturer', 'semanticModelId' ]; + const sortableColumns = { id: true, semanticDataModel: true, nameAtManufacturer: true, semanticModelId: true }; const tableConfig = { displayedColumns, diff --git a/frontend/src/app/modules/shared/components/parts-table/parts-table.component.html b/frontend/src/app/modules/shared/components/parts-table/parts-table.component.html index 0483046d65..ddcf09a863 100644 --- a/frontend/src/app/modules/shared/components/parts-table/parts-table.component.html +++ b/frontend/src/app/modules/shared/components/parts-table/parts-table.component.html @@ -325,7 +325,7 @@

{{ 'table.noResultFound' | i18n }}

- {{'table.semanticDataModel.' + element[column] | i18n}} + {{'table.semanticDataModel.' + element[column]?.toUpperCase() | i18n}} From 34ebf6aadb7e129cfae35345557b79d3f5227f7b Mon Sep 17 00:00:00 2001 From: Maximilian Wesener Date: Tue, 30 Jul 2024 08:44:12 +0200 Subject: [PATCH 2/3] chore(release): 1308 - Fix language mapping for semanticDataModel in notification parts table. Fixed name of part within notification parts table. --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ceaf22984..a7de7c3e97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ _**For better traceability add the corresponding GitHub issue number in each cha ## [UNRELEASED - DD.MM.YYYY] ## [13.0.1 - 26.07.2024] +### Changed +- Fixed semanticDataModel translation and part name within notification detail / edit view. ### Added - #511 Added installation guide for local frontend with umbrella chart From adabcff7c4f862dcb96b016b6e28904b0b04b7b7 Mon Sep 17 00:00:00 2001 From: Maximilian Wesener Date: Tue, 30 Jul 2024 10:41:20 +0200 Subject: [PATCH 3/3] chore(release): 1252 - Updated test data of irs response. --- CHANGELOG.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0a4d5882a..a6e4d2399f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,11 +9,10 @@ _**For better traceability add the corresponding GitHub issue number in each cha ## [UNRELEASED - DD.MM.YYYY] ### Changed -- #1122 fix editing notification sendTo attribute +- #1122 Fixed editing notification sendTo attribute +- #1328 Fixed semanticDataModel translation and part name within notification detail / edit view. ## [13.0.1 - 26.07.2024] -### Changed -- Fixed semanticDataModel translation and part name within notification detail / edit view. ### Added - #511 Added installation guide for local frontend with umbrella chart