diff --git a/ppr-ui/package-lock.json b/ppr-ui/package-lock.json index 8dd881d33..b31db0ecd 100644 --- a/ppr-ui/package-lock.json +++ b/ppr-ui/package-lock.json @@ -1,12 +1,12 @@ { "name": "ppr-ui", - "version": "3.2.57", + "version": "3.2.58", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ppr-ui", - "version": "3.2.57", + "version": "3.2.58", "dependencies": { "@bcrs-shared-components/input-field-date-picker": "^1.0.0", "@lemoncode/fonk": "^1.5.1", diff --git a/ppr-ui/package.json b/ppr-ui/package.json index 58c6f3155..f01853feb 100644 --- a/ppr-ui/package.json +++ b/ppr-ui/package.json @@ -1,6 +1,6 @@ { "name": "ppr-ui", - "version": "3.2.57", + "version": "3.2.58", "private": true, "appName": "Assets UI", "sbcName": "SBC Common Components", diff --git a/ppr-ui/src/components/tables/SearchHistory.vue b/ppr-ui/src/components/tables/SearchHistory.vue index b8eedcba2..001ef648a 100644 --- a/ppr-ui/src/components/tables/SearchHistory.vue +++ b/ppr-ui/src/components/tables/SearchHistory.vue @@ -150,7 +150,7 @@ variant="plain" :ripple="false" :loading="item.loadingPDF" - aria-label="Download report, Download PDF" + aria-label="Download PDF" @click="downloadPDF(item)" > diff --git a/ppr-ui/src/composables/mhrInformation/useTransferOwners.ts b/ppr-ui/src/composables/mhrInformation/useTransferOwners.ts index 25666c1c8..d92a47163 100644 --- a/ppr-ui/src/composables/mhrInformation/useTransferOwners.ts +++ b/ppr-ui/src/composables/mhrInformation/useTransferOwners.ts @@ -330,8 +330,11 @@ export const useTransferOwners = (enableAllActions: boolean = false) => { if (enableAllActions) return true switch (getMhrTransferType.value?.transferType) { - case ApiTransferTypes.TO_EXECUTOR_PROBATE_WILL: case ApiTransferTypes.TO_EXECUTOR_UNDER_25K_WILL: + // Disable Owner actions for Executors and Admins in Trans Affi - Staff Only Transfer + return ![HomeOwnerPartyTypes.EXECUTOR, HomeOwnerPartyTypes.ADMINISTRATOR].includes(owner.partyType) && + !groupHasAllBusinesses(getCurrentGroupById(owner.groupId)) + case ApiTransferTypes.TO_EXECUTOR_PROBATE_WILL: case ApiTransferTypes.TO_ADMIN_NO_WILL: return !groupHasAllBusinesses(getCurrentGroupById(owner.groupId)) case ApiTransferTypes.SALE_OR_GIFT: