mirror of
https://github.com/umami-software/umami.git
synced 2026-05-30 06:47:25 +00:00
Merge pull request #4059 from Gouttfi/master
Fixing too long filter value cause visual overflow Closes #4058
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user