Merge pull request #4059 from Gouttfi/master

Fixing too long filter value cause visual overflow Closes #4058
This commit is contained in:
Francis Cao
2026-03-02 10:31:51 -08:00
committed by GitHub
+4 -4
View File
@@ -148,12 +148,12 @@ const FilterItem = ({ name, label, operator, value, onRemove }) => {
theme="dark"
>
<Row alignItems="center" gap="4">
<Row alignItems="center" gap="2">
<Text color="primary" weight="bold">
<Row alignItems="center" gap="2" maxWidth={'500px'}>
<Text color="12" weight="bold">
{label}
</Text>
<Text color="muted">{operator}</Text>
<Text color="primary" weight="bold">
<Text color="11">{operator}</Text>
<Text color="12" weight="bold" style={{ overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap' }}>
{value}
</Text>
</Row>