Skip to content

Commit

Permalink
[ML] Fix the memory usage chart visibility in the Nodes overview table (
Browse files Browse the repository at this point in the history
#190981)

## Summary

Fixes the memory usage chart visibility in the Nodes overview table 

### Checklist

- [ ] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
  • Loading branch information
darnautov authored Aug 26, 2024
1 parent ad36040 commit b0beec1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export const NodesList: FC<NodesListProps> = ({ compactView = false }) => {
name: i18n.translate('xpack.ml.trainedModels.nodesList.nodeMemoryUsageHeader', {
defaultMessage: 'Memory usage',
}),
truncateText: true,
truncateText: false,
'data-test-subj': 'mlNodesTableColumnMemoryUsage',
render: (v: NodeItem) => {
return <MemoryPreviewChart memoryOverview={v.memory_overview} />;
Expand Down

0 comments on commit b0beec1

Please sign in to comment.