diff --git a/public/app/features/explore/Wrapper.tsx b/public/app/features/explore/Wrapper.tsx index 7ea8f228af8..770b6bd6588 100644 --- a/public/app/features/explore/Wrapper.tsx +++ b/public/app/features/explore/Wrapper.tsx @@ -10,6 +10,7 @@ import { parseUrlState } from 'app/core/utils/explore'; import { initializeExploreSplit } from './state/actions'; import ErrorBoundary from './ErrorBoundary'; import Explore from './Explore'; +import { CustomScrollbar } from '@grafana/ui'; interface WrapperProps { initializeExploreSplit: typeof initializeExploreSplit; @@ -46,15 +47,19 @@ export class Wrapper extends Component { const { leftState, rightState } = this.urlStates; return ( -
- - - - {split && ( - - - - )} +
+ +
+ + + + {split && ( + + + + )} +
+
); }