YARN-8189. [UI2] Nodes page column headers are half truncated. Contributed by Sunil G.
This commit is contained in:
parent
87e09859f1
commit
b0753cc2c0
|
@ -42,19 +42,19 @@ export default Ember.Controller.extend({
|
|||
id: 'label',
|
||||
headerTitle: 'Node Label',
|
||||
contentPath: 'nodeLabelsAsString',
|
||||
minWidth: "100px"
|
||||
minWidth: "125px"
|
||||
}, {
|
||||
id: 'rack',
|
||||
headerTitle: 'Rack',
|
||||
contentPath: 'rack',
|
||||
facetType: null,
|
||||
minWidth: "100px"
|
||||
minWidth: "250px"
|
||||
}, {
|
||||
id: 'state',
|
||||
headerTitle: 'Node State',
|
||||
contentPath: 'state',
|
||||
cellComponentName: 'em-table-status-cell',
|
||||
minWidth: "100px"
|
||||
minWidth: "125px"
|
||||
}, {
|
||||
id: 'address',
|
||||
headerTitle: 'Node Address',
|
||||
|
@ -118,11 +118,13 @@ export default Ember.Controller.extend({
|
|||
headerTitle: 'Last Health Update',
|
||||
contentPath: 'lastHealthUpdate',
|
||||
facetType: null,
|
||||
minWidth: "250px"
|
||||
}, {
|
||||
id: 'healthReport',
|
||||
headerTitle: 'Health-Report',
|
||||
contentPath: 'healthReport',
|
||||
facetType: null,
|
||||
minWidth: "200px"
|
||||
}, {
|
||||
id: 'version',
|
||||
headerTitle: 'Version',
|
||||
|
|
Loading…
Reference in New Issue