Skip to content
Snippets Groups Projects
Commit 5fbf7fcb authored by esikkala's avatar esikkala
Browse files

Instance page: fix props.tableData

parent 3e63af49
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ import classNames from 'classnames'
const styles = () => ({
resultTableList: props => ({
maxHeight: props.tableData.paginatedResultsRowContentMaxHeight
maxHeight: props.tableData && props.tableData.paginatedResultsRowContentMaxHeight
? props.tableData.paginatedResultsRowContentMaxHeight
: 200,
overflow: 'auto'
......
......@@ -7,7 +7,7 @@ import classNames from 'classnames'
const styles = theme => ({
resultTableList: props => ({
maxHeight: props.tableData.paginatedResultsRowContentMaxHeight
maxHeight: props.tableData && props.tableData.paginatedResultsRowContentMaxHeight
? props.tableData.paginatedResultsRowContentMaxHeight
: 200,
overflow: 'auto'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment