Skip to content

Commit 8372d3c

Browse files
committed
[EAM-1022] Fix missing scroll when records do not occupy grid full height
1 parent ea8f68b commit 8372d3c

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

dist/ui/components/grids/eam/EAMGridMain.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,9 @@ var EAMGridMain = function EAMGridMain(props) {
239239
ref: function ref(element) {
240240
_list = element;
241241
},
242+
style: {
243+
overflow: 'scroll'
244+
},
242245
deferredMeasurementCache: _cache,
243246
overscanRowCount: 10,
244247
rowCount: rows.length,

src/ui/components/grids/eam/EAMGridMain.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@ const EAMGridMain = (props) => {
192192
ref={element => {
193193
_list = element;
194194
}}
195+
style={{ overflow: 'scroll' }}
195196
deferredMeasurementCache={_cache}
196197
overscanRowCount={10}
197198
rowCount={rows.length}

0 commit comments

Comments
 (0)