Skip to content

Commit

Permalink
dreamfactorysoftware#202 - Fix user creations throws error
Browse files Browse the repository at this point in the history
  • Loading branch information
root authored and root committed Aug 15, 2024
1 parent 90cc436 commit cdb5ef0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export class DfUserDetailsComponent extends DfUserDetailsBaseComponent<UserProfi
get userAppRoles() {
const userAppRoles = this.userForm.value.appRoles.map((item: any) => {
const appRole = {
userId: this.currentProfile.id,
// userId: this.currentProfile.id,
appId: this.apps.find(app => app.name === item.app)?.id,
roleId: this.roles.find(role => role.name === item.role)?.id,
};
Expand Down

0 comments on commit cdb5ef0

Please sign in to comment.