Skip to content

Commit

Permalink
New flag to show signature on step-7 only.
Browse files Browse the repository at this point in the history
  • Loading branch information
sumathi-thirumani committed Sep 26, 2024
1 parent a1bd32e commit 4ee3101
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

<StepThreeVerifyData
:district-collection-object="districtCollectionObject"
:is-final-sign-off="false"
:is-final-sign-off="true"
:is-collection-active="isCollectionActive"
/>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
:district-collection-object="districtCollectionObject"
:is-final-sign-off="true"
:is-collection-active="isCollectionActive"
:show-signatures="true"
/>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
Resolved <br> Duplicates
</v-tab>
<v-tab
v-if="isFinalSignOff && !isMigratedCollection"
v-if="isFinalSignOff && !isMigratedCollection && showSignatures"
key="SignOff"
value="SignOff"
class="divider"
Expand Down Expand Up @@ -244,6 +244,11 @@ export default {
isCollectionActive: {
type: Boolean,
required: true
},
showSignatures: {
type: Boolean,
required: false,
default: false
}
},
emits: ['next', 'previous'],
Expand Down

0 comments on commit 4ee3101

Please sign in to comment.