Skip to content

Commit

Permalink
Implement wrapped column header styling in ConnectionTypes field table (
Browse files Browse the repository at this point in the history
#3499)

fix linting
  • Loading branch information
jenny-s51 authored Nov 22, 2024
1 parent b5f39ca commit d0f1760
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,12 @@ const ManageConnectionTypeFieldsTable: React.FC<Props> = ({ fields, onFieldsChan
<Tr>
<Th screenReaderText="Drag and drop" />
{columns.map((column, columnIndex) => (
<Th key={columnIndex} width={column.width} visibility={column.visibility}>
<Th
modifier="wrap"
key={columnIndex}
width={column.width}
visibility={column.visibility}
>
{column.label}
</Th>
))}
Expand Down

0 comments on commit d0f1760

Please sign in to comment.