mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[ML] Fixes line wrap for jobs list timestamp cell in Firefox (#34150)
This commit is contained in:
parent
e00dae7405
commit
cd087e04f3
2 changed files with 3 additions and 2 deletions
|
@ -40,7 +40,7 @@ export function DescriptionCell({ actual, typical }) {
|
|||
}
|
||||
<EuiFlexItem grow={false}>
|
||||
<EuiText size="xs">
|
||||
<p>{message}</p>
|
||||
{message}
|
||||
</EuiText>
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
|
|
|
@ -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',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue