Skip to content
Snippets Groups Projects
Commit b74d7d78 authored by Kyle Doherty's avatar Kyle Doherty
Browse files

handle long segment definition strings

parent 87900d39
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ export default class MetadataTableList extends Component {
}
return (
<div className="MetadataEditor-table-list AdminList">
<div className="MetadataEditor-table-list AdminList flex-no-shrink">
<div className="AdminList-search">
<Icon name="search" width="16" height="16"/>
<input
......
......@@ -22,7 +22,9 @@ export default class SegmentItem extends Component {
{segment.name}
</td>
<td className="px1 text-ellipsis">
{description}
<div style={{maxWidth: 400, overflow: 'hidden', textOverflow: 'ellipsis' }}>
{description}
</div>
</td>
<td className="px1 text-centered">
<ObjectActionSelect
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment