Skip to content
This repository was archived by the owner on Apr 22, 2025. It is now read-only.

Commit 3d73e24

Browse files
Merge pull request #43 from tejeswar2020/master
RESEND MAIL - password null error.
2 parents ffd9dd3 + 7498b46 commit 3d73e24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mycollab-web/src/main/java/com/mycollab/module/user/accountsettings/team/view/UserListViewImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ private Component generateMemberBlock(final SimpleUser member) {
169169

170170
if (RegisterStatusConstants.NOT_LOG_IN_YET.equals(member.getRegisterstatus())) {
171171
MButton resendBtn = new MButton(UserUIContext.getMessage(UserI18nEnum.ACTION_RESEND_INVITATION), clickEvent -> {
172-
SendUserInvitationEvent invitationEvent = new SendUserInvitationEvent(member.getUsername(), null,
172+
SendUserInvitationEvent invitationEvent = new SendUserInvitationEvent(member.getUsername(), member.getPassword(),
173173
member.getInviteUser(), AppUI.getSubDomain(), AppUI.getAccountId());
174174
AsyncEventBus asyncEventBus = AppContextUtil.getSpringBean(AsyncEventBus.class);
175175
asyncEventBus.post(invitationEvent);

0 commit comments

Comments
 (0)