Skip to content

Commit

Permalink
output selectedOptionText (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
khoait authored Dec 2, 2024
1 parent 8cd90f5 commit df27233
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export default function PolyLookupControlClassic({
selectedItems?.map((i) => {
return {
id: i.associatedId,
name: i.associatedName,
name: i.selectedOptionText,
etn: metadata?.associatedEntity.LogicalName ?? "",
} as EntityReference;
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ export default function PolyLookupControlNewLook({
selectedOptions?.map((i) => {
return {
id: i.associatedId,
name: i.associatedName,
name: i.selectedOptionText,
etn: metadata?.associatedEntity.LogicalName ?? "",
} as EntityReference;
})
Expand Down

0 comments on commit df27233

Please sign in to comment.