Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexStepantsov committed Feb 22, 2023
1 parent 9fda57c commit 27d2880
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ private void CopyViewConfigs(EntityConfig source, EntityConfig destination)
{
vconfig.FormId = new FormIdFullNameDto()
{
Name = configuration.FormId.Name,
Module = configuration.FormId.Module
Name = configuration.FormId?.Name,
Module = configuration.FormId?.Module
};
}
}
Expand Down

0 comments on commit 27d2880

Please sign in to comment.