mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-01 12:29:35 +01:00
fix journeys path counts bug
This commit is contained in:
parent
3c259109aa
commit
45d6b16b0d
@ -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…
Reference in New Issue
Block a user