Skip to content

Commit

Permalink
Leta Admin Bug (#1978)
Browse files Browse the repository at this point in the history
  • Loading branch information
cameron-eyds authored Jul 12, 2024
1 parent ff8e6bd commit 7ff5fd0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions ppr-ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ppr-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ppr-ui",
"version": "3.2.36",
"version": "3.2.37",
"private": true,
"appName": "Assets UI",
"sbcName": "SBC Common Components",
Expand Down
4 changes: 3 additions & 1 deletion ppr-ui/src/composables/mhrRegistration/useHomeOwners.ts
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,9 @@ export function useHomeOwners (isMhrTransfer: boolean = false, isMhrCorrection:
if (groupToUpdate.owners &&
(groupToUpdate.action !== ActionTypes.REMOVED ||
(getMhrTransferType.value?.transferType === ApiTransferTypes.TO_EXECUTOR_PROBATE_WILL ||
getMhrTransferType.value?.transferType === ApiTransferTypes.TO_EXECUTOR_UNDER_25K_WILL))) {
getMhrTransferType.value?.transferType === ApiTransferTypes.TO_EXECUTOR_UNDER_25K_WILL ||
getMhrTransferType.value?.transferType === ApiTransferTypes.TO_ADMIN_NO_WILL)
)) {
groupToUpdate.owners.push({ ...owner, groupId: groupId || fallBackId })
} else {
// No groups exist, need to create a new one
Expand Down
4 changes: 2 additions & 2 deletions ppr-ui/src/resources/mhr-history/mhHistoryTableHeaders.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ export const homeOwnerHeaders: Array<BaseHeaderIF> = [
class: 'column-xs'
},
{
name: 'Owner From',
name: 'Owned From',
value: 'createDateTime',
class: 'column-xs'
},
{
name: 'Owner Until',
name: 'Owned Until',
value: 'endDateTime',
class: 'column-xs'
},
Expand Down

0 comments on commit 7ff5fd0

Please sign in to comment.