Skip to content

Commit

Permalink
Ppr Authorization State Preservation (#1940)
Browse files Browse the repository at this point in the history
* Authorization Validation State Fix

* version bump
  • Loading branch information
cameron-eyds authored Jun 17, 2024
1 parent 7d36bfa commit 0cd2889
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions ppr-ui/src/components/parties/debtor/Debtors.vue
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@
>
<v-row noGutters>
<v-col
cols="3"
cols="auto"
:class="{ 'disabled-text': item.action === ActionTypes.REMOVED}"
>
<div class="icon-div mt-n1 pr-4">
<div class="icon-div mt-n1 pr-2">
<v-icon v-if="isBusiness(item)">
mdi-domain
</v-icon>
Expand All @@ -137,9 +137,9 @@
</div>
</v-col>
<v-col cols="9">
<div :class="{ 'disabled-text': item.action === ActionTypes.REMOVED}">
<span :class="{ 'disabled-text': item.action === ActionTypes.REMOVED}">
{{ getName(item) }}
</div>
</span>
<div v-if="item.action && registrationFlowType === RegistrationFlowType.AMENDMENT">
<v-chip
v-if="item.action === ActionTypes.REMOVED"
Expand Down
5 changes: 3 additions & 2 deletions ppr-ui/src/views/newRegistration/ReviewConfirm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -287,15 +287,16 @@ export default defineComponent({
getRegistrationFlowType,
getAddSecuredPartiesAndDebtors,
getFooterButtonConfig,
getSecuritiesActNotices
getSecuritiesActNotices,
getCertifyInformation
} = storeToRefs(useStore())
const localState = reactive({
dataLoaded: false,
feeType: FeeSummaryTypes.NEW,
showStepErrors: false,
stepName: RouteNames.REVIEW_CONFIRM,
validCertify: false,
validCertify: getCertifyInformation.value?.certified || false,
validFolio: true,
registrationLength: computed((): RegistrationLengthI => {
return {
Expand Down

0 comments on commit 0cd2889

Please sign in to comment.