Skip to content

Commit

Permalink
fix(projects-view): correctly display project progress
Browse files Browse the repository at this point in the history
  • Loading branch information
ofr1tz committed Jun 6, 2024
1 parent 9fe1f58 commit 948b087
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ProjectMoreInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default defineComponent({
<br />
{{ project.progress }} % {{ $t('projectsView.by') }} {{ project.contributorCount }}
{{ $t('projectsView.contributor', project.contributorCount) }}
<v-progress-linear :value="project.progress" color="primary" />
<v-progress-linear :model-value="project.progress" color="primary" />
</v-card-text>
<v-divider class="mx-4" />
<v-card-actions>
Expand Down
2 changes: 1 addition & 1 deletion src/views/ProjectsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ export default defineComponent({
<v-card-text>
{{ project.progress }} % {{ $t('projectsView.by') }} {{ project.contributorCount }}
{{ $t('projectsView.contributor', project.contributorCount) }}
<v-progress-linear :value="project.progress" color="primary" />
<v-progress-linear :model-value="project.progress" color="primary" />
</v-card-text>
<v-divider class="mx-4" />
<v-card-actions>
Expand Down

0 comments on commit 948b087

Please sign in to comment.