Skip to content

Commit

Permalink
wc: Enable scrolling in notifications list #TASK-7216 #TASK-7100
Browse files Browse the repository at this point in the history
  • Loading branch information
jmjuanes committed Jan 8, 2025
1 parent 9215f96 commit 60011fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webcomponents/commons/grid-notifications.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export default class GridNotifications extends LitElement {
<div class="fw-bold fs-5 mb-1">${this._config.title}</div>
` : nothing}
${this.notifications?.length > 0 ? html`
<div class="d-flex flex-column gap-2">
<div class="d-flex flex-column gap-2 overflow-y-auto" style="max-height:320px;">
${this.notifications?.map(notification => this.renderNotification(notification))}
</div>
` : html`
Expand Down

0 comments on commit 60011fc

Please sign in to comment.