@dyedurham/search-and-file-widget 1.6.30 → 1.6.31
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
|
@@ -88154,7 +88154,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
88154
88154
|
if (cert.type === "Director" && admin.IsDirector) {
|
|
88155
88155
|
return admin;
|
|
88156
88156
|
}
|
|
88157
|
-
if (cert.type !== "Director" && (cert.officerTitle === admin.OfficerPositionName || cert.officerTitle === admin.Position)) {
|
|
88157
|
+
if (cert.type !== "Director" && (cert.officerTitle?.toLowerCase() === admin.OfficerPositionName?.toLowerCase() || cert.officerTitle.toLowerCase() === admin.Position.toLowerCase())) {
|
|
88158
88158
|
return admin;
|
|
88159
88159
|
}
|
|
88160
88160
|
}
|