Skip to content

Commit

Permalink
Fix MscrmTools#188 Form Parameter Manager : Wrong column value in par…
Browse files Browse the repository at this point in the history
…ameter list view
  • Loading branch information
MscrmTools committed Jul 30, 2015
1 parent 2d6bb10 commit b89f6a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Plugins/MsCrmTools.FormParameterManager/AppCode/CrmForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class CrmForm

public CrmForm(Entity form)
{
var emd = entitiesMetadatas.ToList().First(e => e.LogicalName == form.LogicalName);
var emd = entitiesMetadatas.ToList().First(e => e.LogicalName == form.GetAttributeValue<string>("objecttypecode"));

this.form = form;

Expand Down

0 comments on commit b89f6a2

Please sign in to comment.