From a5db777b99c093d02d8b43a07b2d925fa7606bd1 Mon Sep 17 00:00:00 2001 From: MariaAga Date: Tue, 22 Jul 2025 11:47:40 +0100 Subject: [PATCH] Fixes #38602 - replace react-ellipsis-with-tooltip --- .../components/pf3Table/formatters/ellipsisCellFormatter.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/webpack/components/pf3Table/formatters/ellipsisCellFormatter.js b/webpack/components/pf3Table/formatters/ellipsisCellFormatter.js index b4a2fb93f35..2e5a3bd85d2 100644 --- a/webpack/components/pf3Table/formatters/ellipsisCellFormatter.js +++ b/webpack/components/pf3Table/formatters/ellipsisCellFormatter.js @@ -1,5 +1,6 @@ import React from 'react'; -import EllipsisWithTooltip from 'react-ellipsis-with-tooltip'; +import { Truncate } from '@patternfly/react-core'; + import cellFormatter from './cellFormatter'; -export default value => cellFormatter({value}); +export default value => cellFormatter();