Skip to content

Commit

Permalink
chore(release): 1227 - removed scrollbar on approval dialog.
Browse files Browse the repository at this point in the history
  • Loading branch information
ds-mwesener committed Jul 31, 2024
1 parent 2bf42c8 commit 27540cb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<app-notification-overview [notification]="notification" [showNotification]="false"></app-notification-overview>
</mat-card-content>
</mat-card>
<mat-card class="max-h-74 overflow-y-scroll">
<mat-card *ngIf="notification?.messages !== null && notification?.messages?.length > 0" class="max-h-74 overflow-y-scroll">
<mat-card-content>
<app-notification-reason [notificationMessages]="notification?.messages"></app-notification-reason>
</mat-card-content>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

0 comments on commit 27540cb

Please sign in to comment.