diff --git a/platform/ui-next/src/components/StudyBrowser/StudyBrowser.tsx b/platform/ui-next/src/components/StudyBrowser/StudyBrowser.tsx index 244b89546..196a7dbe5 100644 --- a/platform/ui-next/src/components/StudyBrowser/StudyBrowser.tsx +++ b/platform/ui-next/src/components/StudyBrowser/StudyBrowser.tsx @@ -4,6 +4,7 @@ import PropTypes from 'prop-types'; import { StudyItem } from '../StudyItem'; import { StudyBrowserSort } from '../StudyBrowserSort'; import { StudyBrowserViewOptions } from '../StudyBrowserViewOptions'; +import { ScrollArea } from '../ScrollArea'; const noop = () => {}; @@ -59,26 +60,28 @@ const StudyBrowser = ({ }; return ( -
-
- {showSettings && ( -
- <> - - - -
- )} - {getTabContent()} + +
+
+ {showSettings && ( +
+ <> + + + +
+ )} + {getTabContent()} +
-
+ ); };