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
The user name is never stored, so all dashboards are being published by anonymous. The error is in
$world.execCommand("open browser", {moduleName: "studio/helpers.cp.js", packageName: "galyleo-dashboard", codeEntity: [{"name":"PublisherModel","type":"class-decl"},{"name":"init","type":"class-instance-method"}]});
userName is being passed to init but it is never stored, and so when publishDashboard looks for it later it isn't there The fix is to add the line
userName
init
publishDashboard
this.userName = userName
to init, under the guard that userName is not null.
The text was updated successfully, but these errors were encountered:
Change has been made but not yet published.
Sorry, something went wrong.
rickmcgeer
No branches or pull requests
The user name is never stored, so all dashboards are being published by anonymous.
The error is in
userName
is being passed toinit
but it is never stored, and so whenpublishDashboard
looks for it later it isn't thereThe fix is to add the line
to
init
, under the guard thatuserName
is not null.The text was updated successfully, but these errors were encountered: