Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
raphodn committed Jan 17, 2025
1 parent 4e50de6 commit 81ef121
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ProofUploadCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
:color="proofImageList.length === proofObjectList.length ? 'success' : 'info'"
height="25"
:indeterminate="proofObjectList.length ? false : true"
:striped="roofImageList.length !== proofObjectList.length"
:striped="proofImageList.length !== proofObjectList.length"
rounded
/>
</v-card-text>
Expand Down
2 changes: 1 addition & 1 deletion src/views/ContributionAssistant.vue
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
{{ $t('ContributionAssistant.AddNewProof') }}
</v-btn>
</v-col>
<v-col v-if="proofIdsFromQueryParam.length > 1">
<v-col v-if="proofIdsFromQueryParam && proofIdsFromQueryParam.length > 1">
<v-btn :block="!$vuetify.display.smAndUp" color="primary" :disabled="!allDone" @click="nextProof">
{{ $t('ContributionAssistant.NextProof') }}
</v-btn>
Expand Down

0 comments on commit 81ef121

Please sign in to comment.