mirror of
https://github.com/umami-software/umami.git
synced 2026-02-10 07:37:11 +01:00
fix handleRemoveUrl for funnel report
This commit is contained in:
parent
6767f95c0d
commit
845968804b
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue