Skip to content

Commit

Permalink
fix: Dropdown of filterable columns not always visible and missing hi…
Browse files Browse the repository at this point in the history
…nting dots for long column names #2400 (#2414)
  • Loading branch information
dbranley authored Oct 3, 2024
1 parent 5f83b36 commit 7bd8845
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ui/src/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,8 @@ const
const sortIconName = sortCols && sortCols[props.column.key] ? 'Sort' + sortCols[props.column.key] : 'Sort'

return (
<div style={{ display: 'flex', alignItems: 'center' }}>{props.column.name}
<div style={{ display: 'flex', alignItems: 'center' }}>
<span style={{ textOverflow: 'ellipsis', overflow: 'hidden' }}>{props.column.name}</span>
{c.sortable && (
<Fluent.Icon iconName={sortIconName}
className={css.sortingIcon}
Expand Down

0 comments on commit 7bd8845

Please sign in to comment.