Skip to content

Commit 44cc7f3

Browse files
committed
Adding changes to give back the correct id.
1 parent 23f0455 commit 44cc7f3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

eFormAPI/eFormAPI/Controllers/EntitySearchController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public OperationDataResult<List<CommonDictionaryTextModel>> GetEntityGroupDictio
155155
{
156156
mappedEntityGroupDict.Add(new CommonDictionaryTextModel()
157157
{
158-
Id = entityGroupItem.MicrotingUUID,
158+
Id = entityGroupItem.Id.ToString(),
159159
Text = entityGroupItem.Name
160160
});
161161
}

eFormAPI/eFormAPI/Controllers/EntitySelectController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public OperationDataResult<List<CommonDictionaryTextModel>> GetEntityGroupDictio
143143
{
144144
mappedEntityGroupDict.Add(new CommonDictionaryTextModel()
145145
{
146-
Id = entityGroupItem.MicrotingUUID,
146+
Id = entityGroupItem.Id.ToString(),
147147
Text = entityGroupItem.Name
148148
});
149149
}

0 commit comments

Comments
 (0)