Skip to content

Commit

Permalink
fix changed user group object index id name
Browse files Browse the repository at this point in the history
  • Loading branch information
ipula authored and jardakotesovec committed Jan 27, 2025
1 parent 7612110 commit f990a71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/userInvitation/UserInvitationUserGroupsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,8 @@ function removeUserGroup(userGroup, index) {
callback: (close) => {
store.invitationPayload.currentUserGroups.find(
(data, i) => i === index,
).dateEnd = formatShortDate(new Date());
removeRole(store.invitationPayload.userId, userGroup.id);
).dateEnd = new Date();
removeRole(store.invitationPayload.userId, userGroup.userGroupId);
close();
},
},
Expand Down

0 comments on commit f990a71

Please sign in to comment.