Skip to content

Commit

Permalink
fix: disable word wrapping on table header cells
Browse files Browse the repository at this point in the history
  • Loading branch information
robinpyon committed Feb 10, 2021
1 parent 59ac8a1 commit c4de069
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/TableHeaderItem/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ const TableHeaderItem: FC<Props> = (props: Props) => {
onClick={field ? handleClick : undefined}
style={{
cursor: field ? 'pointer' : 'default',
display: 'inline'
display: 'inline',
whiteSpace: 'nowrap'
}}
>
<span
Expand Down

0 comments on commit c4de069

Please sign in to comment.