mirror of
https://github.com/umami-software/umami.git
synced 2026-02-13 17:15:37 +01:00
Fix filter tags formatting.
This commit is contained in:
parent
88da20ea7f
commit
0a2364ff06
1 changed files with 1 additions and 1 deletions
|
|
@ -66,7 +66,7 @@ export function FilterTags({
|
||||||
}
|
}
|
||||||
const label = fields.find(f => f.name === key)?.label;
|
const label = fields.find(f => f.name === key)?.label;
|
||||||
const { operator, value } = parseParameterValue(params[key]);
|
const { operator, value } = parseParameterValue(params[key]);
|
||||||
const paramValue = isSearchOperator(operator) ? formatValue(value, key) : value;
|
const paramValue = isSearchOperator(operator) ? value : formatValue(value, key);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<PopupTrigger key={key}>
|
<PopupTrigger key={key}>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue