File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/client/components/facet_results Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import classNames from 'classnames'
11
11
12
12
const styles = ( ) => ( {
13
13
resultTableList : props => ( {
14
- maxHeight : props . tableData . paginatedResultsRowContentMaxHeight
14
+ maxHeight : props . tableData && props . tableData . paginatedResultsRowContentMaxHeight
15
15
? props . tableData . paginatedResultsRowContentMaxHeight
16
16
: 200 ,
17
17
overflow : 'auto'
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import classNames from 'classnames'
7
7
8
8
const styles = theme => ( {
9
9
resultTableList : props => ( {
10
- maxHeight : props . tableData . paginatedResultsRowContentMaxHeight
10
+ maxHeight : props . tableData && props . tableData . paginatedResultsRowContentMaxHeight
11
11
? props . tableData . paginatedResultsRowContentMaxHeight
12
12
: 200 ,
13
13
overflow : 'auto'
You can’t perform that action at this time.
0 commit comments