Journey report view with nodes and lines.

This commit is contained in:
Mike Cao 2024-06-06 22:30:58 -07:00
parent 9abb201d86
commit d5e14fb5a8
3 changed files with 280 additions and 31 deletions

View file

@ -88,3 +88,7 @@ function getKeyName(key: string, parentKey: string) {
return `${parentKey}.${key}`;
}
export function objectToArray(obj: object) {
return Object.keys(obj).map(key => obj[key]);
}