mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-24 11:01:38 +01:00
Fixed funnel report parameters not showing.
This commit is contained in:
parent
40c1ce40e2
commit
314bbee717
@ -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…
Reference in New Issue
Block a user