From c8b2830c3a7ad941a024e5d1b7d76174c783f038 Mon Sep 17 00:00:00 2001 From: Chris Lawton <chris.lawton@torchbox.com> Date: Tue, 19 Feb 2019 10:56:05 +0000 Subject: [PATCH] reference correct element when setting last listing item height custom prop --- .../static_src/src/app/src/components/GroupedListing/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/opentech/static_src/src/app/src/components/GroupedListing/index.js b/opentech/static_src/src/app/src/components/GroupedListing/index.js index bd796df96..2acca6fd4 100644 --- a/opentech/static_src/src/app/src/components/GroupedListing/index.js +++ b/opentech/static_src/src/app/src/components/GroupedListing/index.js @@ -131,7 +131,8 @@ export default class GroupedListing extends React.Component { // set css custom prop to allow scrolling from dropdown to last item in the list if (this.listRef.current) { - document.documentElement.style.setProperty('--last-listing-item-height', this.listRef.current.firstChild.lastElementChild.offsetHeight + 'px'); + console.log(this.listRef.current); + document.documentElement.style.setProperty('--last-listing-item-height', this.listRef.current.lastElementChild.offsetHeight + 'px'); } return ( -- GitLab