Skip to content

Commit

Permalink
fix audio captions that overflow in AudioViewer.tsx (#2689)
Browse files Browse the repository at this point in the history
  • Loading branch information
thanos-wandb authored Oct 15, 2024
1 parent cc61335 commit 5e44816
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions weave-js/src/components/Panel2/AudioViewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,10 @@ const AudioViewer = (props: AudioViewerProps) => {
style={{
background: globals.white,
width: '100%',
overflow: 'hidden',
overflowX: 'auto',
overflowY: 'hidden',
display: 'flex',
justifyContent: 'center',
justifyContent: 'left',
flex: '1 1',
}}>
{
Expand Down

0 comments on commit 5e44816

Please sign in to comment.