Skip to content

Commit

Permalink
fix memory usage column
Browse files Browse the repository at this point in the history
  • Loading branch information
darnautov committed Aug 21, 2024
1 parent ad4a3ff commit cab69ce
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 cab69ce

Please sign in to comment.