@dyedurham/search-and-file-widget 1.6.21 → 1.6.22
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 -3
- package/package.json +1 -1
package/dnd-filing-shell.js
CHANGED
|
@@ -59356,8 +59356,8 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
59356
59356
|
let isThisChangeToAnExistingEntity = false;
|
|
59357
59357
|
let isThisChangeToAnExistingEntityVisible = false;
|
|
59358
59358
|
if (affiliationType !== IRAffiliationType.Ceased) {
|
|
59359
|
-
if (deltaData) {
|
|
59360
|
-
if (
|
|
59359
|
+
if (deltaData?.currentName) {
|
|
59360
|
+
if (!currentData) {
|
|
59361
59361
|
isThisChangeToAnExistingEntity = true;
|
|
59362
59362
|
isThisChangeToAnExistingEntityVisible = true;
|
|
59363
59363
|
}
|
|
@@ -87443,7 +87443,6 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
87443
87443
|
return { persons: personsMap, corporationInfo: { primaryActivity: "", email: "" } };
|
|
87444
87444
|
const initialAdministrators = corporationInfo.CurrentData.InitialAdministrators;
|
|
87445
87445
|
const fullName = (payload) => {
|
|
87446
|
-
console.log(payload);
|
|
87447
87446
|
return [
|
|
87448
87447
|
payload.PersonName.FirstName?.toLowerCase() ?? "",
|
|
87449
87448
|
payload.PersonName.MiddleName?.toLowerCase() ?? "",
|