From 27540cba4141f974c95622c435fd0aa41a290163 Mon Sep 17 00:00:00 2001 From: Maximilian Wesener Date: Wed, 31 Jul 2024 10:08:32 +0200 Subject: [PATCH] chore(release): 1227 - removed scrollbar on approval dialog. --- CHANGELOG.md | 3 +++ .../modal/content/notification-modal-content.component.html | 2 +- .../modal/content/notification-modal-content.component.ts | 3 +++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5752c7f928..297024e330 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,9 @@ _**For better traceability add the corresponding GitHub issue number in each cha - #1328 Fixed semanticDataModel translation and part name within notification detail / edit view. - #908 Renamed header in notification detail for parts from Supplier Parts to Affected parts +### Removed +- #1227 Removed scrollbar on approval dialog + ## [13.0.1 - 26.07.2024] ### Added diff --git a/frontend/src/app/modules/shared/modules/notification/modal/content/notification-modal-content.component.html b/frontend/src/app/modules/shared/modules/notification/modal/content/notification-modal-content.component.html index 62b05594c9..683cf6752e 100644 --- a/frontend/src/app/modules/shared/modules/notification/modal/content/notification-modal-content.component.html +++ b/frontend/src/app/modules/shared/modules/notification/modal/content/notification-modal-content.component.html @@ -25,7 +25,7 @@ - + diff --git a/frontend/src/app/modules/shared/modules/notification/modal/content/notification-modal-content.component.ts b/frontend/src/app/modules/shared/modules/notification/modal/content/notification-modal-content.component.ts index db45e8b597..83b2841050 100644 --- a/frontend/src/app/modules/shared/modules/notification/modal/content/notification-modal-content.component.ts +++ b/frontend/src/app/modules/shared/modules/notification/modal/content/notification-modal-content.component.ts @@ -28,4 +28,7 @@ import { Notification } from '@shared/model/notification.model'; }) export class NotificationModalContentComponent { @Input() notification: Notification; + constructor() { + setTimeout(() => {console.log(this.notification, "notification")}, 2000); + } }