Skip to content

Commit

Permalink
Merge pull request #5391 from jay-hodgson/SWC-6843
Browse files Browse the repository at this point in the history
  • Loading branch information
xschildw authored May 17, 2024
2 parents 41813fc + 3b83e23 commit a735a37
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1551,8 +1551,9 @@ private void configureEditProjectMetadataAction() {
}

private void configureProjectHelpAction() {
boolean isProject = entityBundle.getEntity() instanceof Project;
actionMenu.setActionVisible(Action.PROJECT_HELP, isProject);
boolean isProjectMenu =
entityBundle.getEntity() instanceof Project && currentArea == null;
actionMenu.setActionVisible(Action.PROJECT_HELP, isProjectMenu);
actionMenu.setActionHref(
Action.PROJECT_HELP,
"https://sagebionetworks.jira.com/servicedesk/customer/portal/9"
Expand Down

0 comments on commit a735a37

Please sign in to comment.