Skip to content

Commit

Permalink
fix'd
Browse files Browse the repository at this point in the history
  • Loading branch information
mateanticevic committed Apr 8, 2020
1 parent c7062b4 commit cb2fe54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ProjectIvy.Model/View/User/User.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public User(DatabaseModel.User.User x)
Email = x.Email;
Username = x.Username;
Roles = x.UserRoles.Select(y => new Role.Role(y.Role));
Modules = x.Modules.Where(x => x.IsActive).Select(x => x.Module.ValueId);
Modules = x.Modules.Where(y => y.IsActive).Select(y => y.Module.ValueId);
}

public Currency.Currency DefaultCurrency { get; set; }
Expand Down

0 comments on commit cb2fe54

Please sign in to comment.