@dyedurham/search-and-file-widget 2.0.3 → 2.0.4
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 +1 -1
- package/package.json +1 -1
package/dnd-filing-shell.js
CHANGED
|
@@ -88078,7 +88078,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
88078
88078
|
const PostalAddress = buildPostalAddress(entityAddr, deltaEntry?.address);
|
|
88079
88079
|
const PersonName = { FirstName: firstName, MiddleName: middleName, LastName: lastName };
|
|
88080
88080
|
const position2 = isOfficer ? OFFICER_TITLE_TO_ECORE_POSITION_CODE[aff.role?.static_title ?? ""] ?? "" : "Director";
|
|
88081
|
-
const matchingAdmin = getCurrentDataAdministrator(deltaEntry
|
|
88081
|
+
const matchingAdmin = getCurrentDataAdministrator(deltaEntry?.currentName ?? "", isOfficer);
|
|
88082
88082
|
const isCeaseAction = currentState === IRCurrentState.Ceased;
|
|
88083
88083
|
const isDirectorFromRole = aff.role?.role_name === "Director";
|
|
88084
88084
|
const mappedCurrentStateName = currentState === IRCurrentState.Added ? "Added" : currentState === IRCurrentState.Ceased ? "Ceased" : "Edited";
|