We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When multiple fields are put in for the src/dst, only the first is used
Ex: src = [ VP, Region ] should cause nodes like (Jane, USA) but instead only creates node Jane
src = [ VP, Region ]
(Jane, USA)
Jane
The text was updated successfully, but these errors were encountered:
lines 47-52 needs to be removed in capabilities.json "drilldown": { "roles": [ "Source", "Target" ] },
"drilldown": { "roles": [ "Source", "Target" ] },
Sorry, something went wrong.
need to implement .filter and map instead of .find in visual.ts
line 160 const srcColMetadata = view.metadata.columns.find((c) => c.roles.Source);
const srcColMetadata = view.metadata.columns.find((c) => c.roles.Source);
line 163 const dstColMetadata = view.metadata.columns.find((c) => c.roles.Destination);
const dstColMetadata = view.metadata.columns.find((c) => c.roles.Destination);
dess890
No branches or pull requests
When multiple fields are put in for the src/dst, only the first is used
Ex:
src = [ VP, Region ]
should cause nodes like(Jane, USA)
but instead only creates nodeJane
The text was updated successfully, but these errors were encountered: