We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9674640 commit c246154Copy full SHA for c246154
1 file changed
controls/pcfcontroldemo/MultiSelectControl/index.ts
@@ -114,13 +114,8 @@ export class MultiSelectPCFControl implements ComponentFramework.StandardControl
114
115
return this._context.webAPI.retrieveMultipleRecords(this.props.entityName,qs)
116
.then(function (results) {
117
- return results?.entities.map(val => ({
118
- accountid: val.accountid,
119
- name: val.name
120
- }));
121
-
122
- });
123
+ return results?.entities;
+ });
124
}
125
126
private renderElement()
0 commit comments