We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d85eb0d commit abf00c9Copy full SHA for abf00c9
src/Shared/Components/FilterChips/FilterChips.component.tsx
@@ -15,7 +15,7 @@
15
*/
16
17
import { ReactComponent as CloseIcon } from '../../../Assets/Icon/ic-close.svg'
18
-import { noop } from '../../../Common'
+import { noop, Tooltip } from '../../../Common'
19
import { FilterChipProps, FilterChipsProps } from './types'
20
21
const FilterChip = ({
@@ -45,7 +45,9 @@ const FilterChip = ({
45
<span className="dc__divider h-24" />
46
</>
47
)}
48
- <span className="dc__ellipsis-right">{valueToDisplay}</span>
+ <Tooltip content={valueToDisplay} showOnTruncate>
49
+ <span className="dc__ellipsis-right dc__word-break dc__mxw-150">{valueToDisplay}</span>
50
+ </Tooltip>
51
{showRemoveIcon && (
52
<button
53
type="button"
0 commit comments