@dyedurham/search-and-file-widget 2.0.8 → 2.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dnd-filing-shell.js +2 -2
- package/package.json +1 -1
package/dnd-filing-shell.js
CHANGED
|
@@ -87694,7 +87694,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
87694
87694
|
const directorsDelta = deltaData.directors;
|
|
87695
87695
|
const individualsWithSignificantControlDelta = deltaData.individualsWithSignificantControl;
|
|
87696
87696
|
const consentToProvideEmails = deltaData.consentToProvideDirectorEmailAddressesForFullAccessManager;
|
|
87697
|
-
|
|
87697
|
+
getIndividualWithSignificantControl(task.entity.affiliations);
|
|
87698
87698
|
const isListIsc = significantControl.type === ISCOptions.ListISC;
|
|
87699
87699
|
const isNonPreapproved = corporateNameDelta?.nameType === NameType2.NonPreapproved;
|
|
87700
87700
|
const payload = __spreadProps(__spreadValues({
|
|
@@ -87738,7 +87738,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
87738
87738
|
d.affiliationId,
|
|
87739
87739
|
d
|
|
87740
87740
|
]));
|
|
87741
|
-
return
|
|
87741
|
+
return task.entity.affiliations.filter((aff) => deltaMap.has(aff._id)).map((aff) => transformIndividualWithSignificantControl(aff, deltaMap.get(aff._id)));
|
|
87742
87742
|
})() : void 0,
|
|
87743
87743
|
AdditionalInformation: isNonPreapproved ? [
|
|
87744
87744
|
{
|