[ML] Fixes line wrap for jobs list timestamp cell in Firefox (#34150)

This commit is contained in:
Pete Harverson 2019-03-29 14:37:27 +00:00 committed by GitHub
parent e00dae7405
commit cd087e04f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -40,7 +40,7 @@ export function DescriptionCell({ actual, typical }) {
}
<EuiFlexItem grow={false}>
<EuiText size="xs">
<p>{message}</p>
{message}
</EuiText>
</EuiFlexItem>
</EuiFlexGroup>

View file

@ -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',