mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-22 01:46:58 +01:00
fix handleRemoveUrl for funnel report
This commit is contained in:
parent
6767f95c0d
commit
845968804b
@ -40,7 +40,7 @@ export function FunnelParameters() {
|
|||||||
|
|
||||||
const handleRemoveUrl = (url: string) => {
|
const handleRemoveUrl = (url: string) => {
|
||||||
const urls = [...parameters.urls];
|
const urls = [...parameters.urls];
|
||||||
updateReport({ parameters: { urls: urls.filter(n => n.url !== url) } });
|
updateReport({ parameters: { urls: urls.filter(n => n !== url) } });
|
||||||
};
|
};
|
||||||
|
|
||||||
const AddUrlButton = () => {
|
const AddUrlButton = () => {
|
||||||
|
Loading…
Reference in New Issue
Block a user