Skip to content

Commit

Permalink
fix: long code blocks overflow in ui. Fixes #8916 (#8947)
Browse files Browse the repository at this point in the history
Signed-off-by: Dakota Lillie <[email protected]>
  • Loading branch information
dakotalillie authored and sarabala1979 committed Jun 20, 2022
1 parent 1d26628 commit 8c0b435
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ interface Props {
const AttributeRow = (attr: {title: string; value: any}) => (
<div className='row white-box__details-row' key={attr.title}>
<div className='columns small-4'>{attr.title}</div>
<div className='columns columns--narrower-height small-8' style={{whiteSpace: 'pre-wrap'}}>
<div className='columns columns--narrower-height small-8' style={{overflow: 'auto hidden'}}>
{attr.value}
</div>
</div>
Expand Down

0 comments on commit 8c0b435

Please sign in to comment.