Skip to content

Commit

Permalink
[ML] Fixes line wrap for jobs list timestamp cell in Firefox (#34150)
Browse files Browse the repository at this point in the history
  • Loading branch information
peteharverson authored Mar 29, 2019
1 parent e00dae7 commit cd087e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export function DescriptionCell({ actual, typical }) {
}
<EuiFlexItem grow={false}>
<EuiText size="xs">
<p>{message}</p>
{message}
</EuiText>
</EuiFlexItem>
</EuiFlexGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,8 @@ class JobsListUI extends Component {
(item.latestTimestampMs === undefined) ? '' : moment(item.latestTimestampMs).format(TIME_FORMAT)
}
</span>
)
),
textOnly: true,
}, {
name: intl.formatMessage({
id: 'xpack.ml.jobsList.actionsLabel',
Expand Down

0 comments on commit cd087e0

Please sign in to comment.