Missing ref to scrolling variable

This commit is contained in:
Reiss Cashmore 2023-10-30 14:35:38 +00:00
parent 35a5387010
commit 16ec94856a

View File

@ -19,7 +19,7 @@ export default function Component({ service }) {
return undefined;
}, [refreshTimer, widget?.refreshInterval]);
const scrollingDisableStyle = widget.scrolling
const scrollingDisableStyle = widget?.allowScrolling
? "pointer-events:none; overflow: hidden;"
: "";