Hi Patrick
This is a well-known behavioral change. In your Popup_Layout:
For quick fix you can go with CSS, But it is not the recommended approach
.mx-window .mx-dataview {
display: flex;
flex-direction: column;
overflow: hidden;
max-height: 100%;
}
.mx-window .mx-dataview .mx-dataview-content {
flex: 1 1 auto;
overflow-y: auto;
}
.mx-window .mx-dataview .mx-dataview-controls {
flex: 0 0 auto;
}
I hope this helps