mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 12:47:13 +01:00
fix journeys path counts bug
This commit is contained in:
parent
3c259109aa
commit
45d6b16b0d
1 changed files with 1 additions and 3 deletions
|
|
@ -41,9 +41,7 @@ export default function JourneyView() {
|
|||
const active = selected && !!activePaths.find(path => path.items[columnIndex] === name);
|
||||
|
||||
if (!nodes[name]) {
|
||||
const paths = data.filter((d, i) => {
|
||||
return i !== columnIndex && d.items[columnIndex] === name;
|
||||
});
|
||||
const paths = data.filter(d => d.items[columnIndex] === name);
|
||||
|
||||
const from =
|
||||
columnIndex > 0 &&
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue