Compare commits

...

4 Commits

Author SHA1 Message Date
Ishan Uniyal
1e3020220c feat: typography tooltip updated 2026-02-10 18:34:47 +05:30
Ishan Uniyal
e4f6c7e808 feat: typography tooltip 2026-02-10 18:31:19 +05:30
Ishan Uniyal
14036372ed feat: updated to have mouseEnterDelay with 200ms 2026-02-10 11:33:30 +05:30
Ishan Uniyal
fb56a6879d feat: tooltip scroll bug 2026-02-10 11:33:30 +05:30

View File

@@ -648,7 +648,13 @@ export default function CheckboxFilter(props: ICheckboxProps): JSX.Element {
) : (
<Typography.Text
className="value-string"
ellipsis={{ tooltip: { placement: 'top' } }}
ellipsis={{
tooltip: {
placement: 'top',
mouseEnterDelay: 0.2,
mouseLeaveDelay: 0,
},
}}
>
{String(value)}
</Typography.Text>