Skip to content

Commit

Permalink
fix filter entries overflowing
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-luger committed Jun 28, 2024
1 parent 587ceee commit 8e0de54
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/ItemFilter/ItemFilterPropertiesDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,9 @@ function ItemFilterPropertiesDisplay(props: Props) {

return (
<p key={key}>
{camelCaseToSentenceCase(key)}: {display}
<div className="ellipse" title={display}>
{camelCaseToSentenceCase(key)}: {display}
</div>
{props.isEditable ? (
<span
style={{ color: 'red', cursor: 'pointer' }}
Expand Down

0 comments on commit 8e0de54

Please sign in to comment.