mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
Fixed funnel report parameters not showing.
This commit is contained in:
parent
40c1ce40e2
commit
314bbee717
1 changed files with 5 additions and 1 deletions
|
|
@ -72,7 +72,11 @@ export function FunnelParameters() {
|
|||
<FormRow label={formatMessage(labels.urls)} action={<AddUrlButton />}>
|
||||
<ParameterList>
|
||||
{urls.map(url => {
|
||||
return <ParameterList.Item key={url} onRemove={() => handleRemoveUrl(url)} />;
|
||||
return (
|
||||
<ParameterList.Item key={url} onRemove={() => handleRemoveUrl(url)}>
|
||||
{url}
|
||||
</ParameterList.Item>
|
||||
);
|
||||
})}
|
||||
</ParameterList>
|
||||
</FormRow>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue