mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00: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 />}>
|
<FormRow label={formatMessage(labels.urls)} action={<AddUrlButton />}>
|
||||||
<ParameterList>
|
<ParameterList>
|
||||||
{urls.map(url => {
|
{urls.map(url => {
|
||||||
return <ParameterList.Item key={url} onRemove={() => handleRemoveUrl(url)} />;
|
return (
|
||||||
|
<ParameterList.Item key={url} onRemove={() => handleRemoveUrl(url)}>
|
||||||
|
{url}
|
||||||
|
</ParameterList.Item>
|
||||||
|
);
|
||||||
})}
|
})}
|
||||||
</ParameterList>
|
</ParameterList>
|
||||||
</FormRow>
|
</FormRow>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue