We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b01588e commit eb26221Copy full SHA for eb26221
1 file changed
src/controls/dynamicForm/DynamicForm.tsx
@@ -1204,10 +1204,6 @@ export class DynamicForm extends React.Component<
1204
hiddenName = field.HiddenListInternalName;
1205
termSetId = field.TermSetId;
1206
anchorId = field.AnchorId;
1207
- if (item && item[field.InternalName] && item[field.InternalName].hasOwnProperty('__metadata') && item[field.InternalName].hasOwnProperty('results')) {
1208
- // Some combinations of included packages cause the returned data to be placed in a 'results' sub-property after compilation.
1209
- item[field.InternalName] = item[field.InternalName]['results'];
1210
- }
1211
if (item && item[field.InternalName]) {
1212
item[field.InternalName].forEach((element) => {
1213
selectedTags.push({
0 commit comments