Skip to content

Commit 8d00d60

Browse files
fix: Always display target value in progress bar
This commit addresses the feedback from the pull request review. The right-side value of the progress bar will now always display the achievement's target value (`value`), regardless of whether the scaling toggle is active.
1 parent 3ca0133 commit 8d00d60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/pages/achievements/[id]/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
/>
6666
</td>
6767
<td :style="{whiteSpace: 'nowrap'}">
68-
{{user.count || 0}} / {{scaleToMaxUser ? maxCount : value}}
68+
{{user.count || 0}} / {{value}}
6969
</td>
7070
</tr>
7171
</tbody>

0 commit comments

Comments
 (0)