mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 01:13:23 -04:00
[Monitoring] Add Version column to Cluster Listing table (#151638)
Fixes #151508 <img width="1775" alt="Screenshot 2023-02-20 at 16 42 38" src="https://user-images.githubusercontent.com/2564140/220149715-26097b5c-601e-498d-8523-9db7d9d43891.png"> Using the data already provided by the API, I've added a new column to the cluster listing table to show the version there as well.
This commit is contained in:
parent
4381fccc7c
commit
3acff6faf8
1 changed files with 8 additions and 0 deletions
|
@ -230,6 +230,14 @@ const getColumns = (
|
|||
);
|
||||
},
|
||||
},
|
||||
{
|
||||
name: i18n.translate('xpack.monitoring.cluster.listing.versionColumnTitle', {
|
||||
defaultMessage: 'Version',
|
||||
}),
|
||||
field: 'version',
|
||||
'data-test-subj': 'clusterVersion',
|
||||
sortable: true,
|
||||
},
|
||||
];
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue