summaryrefslogtreecommitdiffstats
path: root/webapp
diff options
context:
space:
mode:
Diffstat (limited to 'webapp')
-rw-r--r--webapp/components/suggestion/suggestion_list.jsx4
1 files changed, 4 insertions, 0 deletions
diff --git a/webapp/components/suggestion/suggestion_list.jsx b/webapp/components/suggestion/suggestion_list.jsx
index ce950e4f4..71f767104 100644
--- a/webapp/components/suggestion/suggestion_list.jsx
+++ b/webapp/components/suggestion/suggestion_list.jsx
@@ -62,6 +62,10 @@ export default class SuggestionList extends React.Component {
scrollToItem(term) {
const content = this.getContent();
+ if (!content) {
+ return;
+ }
+
const visibleContentHeight = content[0].clientHeight;
const actualContentHeight = content[0].scrollHeight;