fix(ReportView): unnecessary double scrolling

This commit is contained in:
Ejaaz Khan 2025-11-23 11:17:06 +05:30
parent 370efbd3e8
commit 544a2908cb
2 changed files with 2 additions and 2 deletions

View file

@ -449,6 +449,7 @@ frappe.views.BaseList = class BaseList {
}
set_result_height() {
if (this.view !== "List") return;
this.$result[0].style.removeProperty("height");
// place it at the footer of the page

View file

@ -134,8 +134,7 @@
}
.dt-scrollable {
max-height: calc(100vh - 250px);
min-height: 100px;
height: calc(100vh - 290px);
scrollbar-width: thin;
border-top: 0 !important;
}