mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[ML] Fixing formatting of processed record count in jobs list (#21395)
This commit is contained in:
parent
00be773430
commit
9fc4438fae
5 changed files with 4 additions and 4 deletions
|
@ -12,6 +12,7 @@ import React, {
|
|||
|
||||
import { sortBy } from 'lodash';
|
||||
|
||||
import { toLocaleString } from '../../../../util/string_utils';
|
||||
import { ResultLinks, actionsMenuContent } from '../job_actions';
|
||||
import { JobDescription } from './job_description';
|
||||
import { JobIcon } from '../job_message_icon';
|
||||
|
@ -136,6 +137,8 @@ export class JobsList extends Component {
|
|||
name: 'Processed records',
|
||||
sortable: true,
|
||||
truncateText: false,
|
||||
dataType: 'number',
|
||||
render: count => toLocaleString(count)
|
||||
}, {
|
||||
field: 'memory_status',
|
||||
name: 'Memory status',
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
width: auto;
|
||||
}
|
||||
th:nth-child(6) {
|
||||
width: 90px;
|
||||
width: 100px;
|
||||
}
|
||||
th:nth-child(7) {
|
||||
width: 85px;
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
background-color: #F9F9F9;
|
||||
label {
|
||||
font-weight: normal;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -50,7 +50,6 @@
|
|||
background-color: #F9F9F9;
|
||||
label {
|
||||
font-weight: normal;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -57,7 +57,6 @@
|
|||
background-color: #F9F9F9;
|
||||
label {
|
||||
font-weight: normal;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue