Explore: Remove unnessary scroll on split pane (#61064)

* Explore: Remove unnessary scroll on split pane

* set overflow to auto

Co-authored-by: Giordano Ricci <me@giordanoricci.com>
pull/61197/head
Torkel Ödegaard 2 years ago committed by GitHub
parent 7604360622
commit 9cdcbab2fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      public/app/features/explore/ExplorePage.tsx

@ -141,7 +141,7 @@ export function ExplorePage(props: GrafanaRouteComponentProps<{}, ExploreQueryPa
maxSize={minWidth * -1}
primary="second"
splitVisible={hasSplit}
paneStyle={{ overflow: 'auto', display: 'flex', flexDirection: 'column', overflowY: 'scroll' }}
paneStyle={{ overflow: 'auto', display: 'flex', flexDirection: 'column' }}
onDragFinished={(size) => {
if (size) {
updateSplitSize(size);

Loading…
Cancel
Save