Skip to content

Commit

Permalink
Deprecate .eui-textOverflowWrap
Browse files Browse the repository at this point in the history
  • Loading branch information
cee-chen committed May 24, 2022
1 parent 07619a8 commit b4cde8f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -214,10 +214,10 @@ export class FeatureProperties extends Component<Props, State> {
<table className="eui-yScrollWithShadows mapFeatureTooltip_table" ref={this._tableRef}>
<tbody>
<tr>
<td className="eui-textOverflowWrap mapFeatureTooltip__propertyLabel">
<td className="eui-textBreakWord mapFeatureTooltip__propertyLabel">
{tooltipProperty.getPropertyName()}
</td>
<td className="eui-textOverflowWrap">{tooltipProperty.getHtmlDisplayValue()}</td>
<td className="eui-textBreakWord">{tooltipProperty.getHtmlDisplayValue()}</td>
</tr>
</tbody>
</table>
Expand Down Expand Up @@ -326,10 +326,10 @@ export class FeatureProperties extends Component<Props, State> {
const rows = this.state.properties.map((tooltipProperty) => {
return (
<tr key={tooltipProperty.getPropertyKey()} className="mapFeatureTooltip_row">
<td className="eui-textOverflowWrap mapFeatureTooltip__propertyLabel">
<td className="eui-textBreakWord mapFeatureTooltip__propertyLabel">
{tooltipProperty.getPropertyName()}
</td>
<td className="eui-textOverflowWrap">{tooltipProperty.getHtmlDisplayValue()}</td>
<td className="eui-textBreakWord">{tooltipProperty.getHtmlDisplayValue()}</td>
{this._renderFilterCell(tooltipProperty)}
</tr>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,7 @@ class AnnotationsTableUI extends Component {
<EuiInMemoryTable
data-test-subj={'mlAnnotationsTable'}
error={searchError}
className="eui-textOverflowWrap"
className="eui-textBreakWord"
compressed={true}
items={items}
columns={columns}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ export class AnomaliesTableInternal extends Component {
unsetShowFunction={this.unsetShowRuleEditorFlyoutFunction}
/>
<EuiInMemoryTable
className="ml-anomalies-table eui-textOverflowWrap"
className="ml-anomalies-table eui-textBreakWord"
items={tableData.anomalies}
columns={columns}
pagination={pagination}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export const ModelSnapshotTable: FC<Props> = ({ job, refreshJobList }) => {
return (
<>
<EuiInMemoryTable
className="eui-textOverflowWrap"
className="eui-textBreakWord"
compressed={true}
items={snapshots}
columns={columns}
Expand Down

0 comments on commit b4cde8f

Please sign in to comment.