Skip to content

Commit

Permalink
fix(Theme): also change progress-linear bar colors. ref #1269
Browse files Browse the repository at this point in the history
  • Loading branch information
raphodn committed Jan 18, 2025
1 parent e0ab62d commit 8c5bbb7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/ChallengeTimeline.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</v-timeline-item>
</v-timeline>
<v-progress-linear
color="info"
color="primary"
height="25"
:model-value="progress"
striped
Expand Down
2 changes: 1 addition & 1 deletion src/components/ProofUploadCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<v-progress-linear
v-model="proofObjectList.length"
:max="proofImageList.length"
:color="proofImageList.length === proofObjectList.length ? 'success' : 'info'"
:color="proofImageList.length === proofObjectList.length ? 'success' : 'primary'"
height="25"
:indeterminate="proofObjectList.length ? false : true"
:striped="proofImageList.length !== proofObjectList.length"
Expand Down
2 changes: 1 addition & 1 deletion src/views/ContributionAssistant.vue
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
<v-progress-linear
v-model="numberOfPricesAdded"
:max="productPriceFormsWithoutPriceId.length"
:color="productPriceFormsWithoutPriceId.length === numberOfPricesAdded ? 'success' : 'info'"
:color="productPriceFormsWithoutPriceId.length === numberOfPricesAdded ? 'success' : 'primary'"
height="25"
:striped="productPriceFormsWithoutPriceId.length !== numberOfPricesAdded"
rounded
Expand Down

0 comments on commit 8c5bbb7

Please sign in to comment.