Skip to content

Commit

Permalink
one more case
Browse files Browse the repository at this point in the history
  • Loading branch information
jay-hodgson committed May 15, 2024
1 parent 76fd3c2 commit 4956042
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class UserBadgeViewImpl extends Div implements UserBadgeView {
};
private String extraCssClassStrings = "";
public static final CallbackP<String> NEW_WINDOW_HANDLER = userId -> {
newWindow("Profile:" + userId, "_blank", "");
newWindow("/Profile:" + userId, "_blank", "");
};
boolean showAvatar = false;
boolean showCardOnHover = true;
Expand Down Expand Up @@ -111,7 +111,7 @@ public void configure(
menuActionsArray.toArray(),
pictureUrl,
!authController.isLoggedIn(),
"Profile:" + userId,
"/Profile:" + userId,
isCertified == null ? false : isCertified.booleanValue(),
isValidated == null ? false : isValidated.booleanValue(),
showAvatar,
Expand Down

0 comments on commit 4956042

Please sign in to comment.