-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
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
SWC-6653 #5255
SWC-6653 #5255
Conversation
@@ -107,6 +109,10 @@ public void invoke() { | |||
refreshApprovalState(); | |||
} | |||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Expose the AR ID for the legacy ACT AR widget, and the Lock AR (if ACT)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And only show the "Covered Entities" if ACT
container.setVisible(false); | ||
} | ||
|
||
public void configure(String accessRequirementId) { | ||
AccessRequirementRelatedProjectsListProps props = | ||
AccessRequirementRelatedProjectsListProps.create(accessRequirementId); | ||
ReactNode component = React.createElementWithThemeContext( | ||
ReactNode component = React.createElementWithSynapseContext( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug 2: Pass the full Synapse Context, including the access token. Without this, only Public projects were able to be resolved in the related projects component.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for catching this!
@@ -55,7 +65,7 @@ public void setTeamSubjectsWidget(IsWidget w) { | |||
} | |||
|
|||
@Override | |||
public void setEntitySubjectsWidget(IsWidget entitySubjectsWidget) { | |||
public void setEntitySubjectsWidget(IsWidget w) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug 1: Typo. entitySubjectsWidget
should be w
(local vs member variable)
No description provided.