Auto-generate: Scrollable history container (#77895)

pull/78776/head
Adela Almasan 2 years ago committed by GitHub
parent 5ca5a95e63
commit e4fb112d6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      public/app/features/dashboard/components/GenAI/GenAIHistory.tsx
  2. 2
      public/app/features/dashboard/components/GenAI/GenerationHistoryCarousel.tsx

@ -186,6 +186,7 @@ const getStyles = (theme: GrafanaTheme2) => ({
display: 'flex',
flexDirection: 'column',
width: 520,
height: 250,
// This is the space the footer height
paddingBottom: 35,
}),

@ -64,5 +64,7 @@ const getStyles = (theme: GrafanaTheme2) => ({
flexGrow: 3,
whiteSpace: 'pre-wrap',
marginTop: 20,
height: 110,
overflowY: 'scroll',
}),
});

Loading…
Cancel
Save