Skip to content

Commit

Permalink
Add width 100% to fields
Browse files Browse the repository at this point in the history
  • Loading branch information
asteriscos committed Dec 17, 2024
1 parent acb171a commit cd4af23
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,11 @@ const DocViewer = (props: tDocViewerProps) => {
*/
// eslint-disable-next-line react/no-danger
dangerouslySetInnerHTML={{ __html: value as string }}
style={{ overflowY: 'auto', wordBreak: 'break-all' }}
style={{
overflowY: 'auto',
wordBreak: 'break-all',
width: '100%',
}}
/>
)}
</td>
Expand Down

0 comments on commit cd4af23

Please sign in to comment.