mirror of
https://github.com/umami-software/umami.git
synced 2026-02-08 06:37:18 +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);
|
const active = selected && !!activePaths.find(path => path.items[columnIndex] === name);
|
||||||
|
|
||||||
if (!nodes[name]) {
|
if (!nodes[name]) {
|
||||||
const paths = data.filter((d, i) => {
|
const paths = data.filter(d => d.items[columnIndex] === name);
|
||||||
return i !== columnIndex && d.items[columnIndex] === name;
|
|
||||||
});
|
|
||||||
|
|
||||||
const from =
|
const from =
|
||||||
columnIndex > 0 &&
|
columnIndex > 0 &&
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue