Skip to content

Commit

Permalink
fix: 满级条件判断
Browse files Browse the repository at this point in the history
  • Loading branch information
ted423 committed Dec 11, 2022
1 parent 6d61861 commit a09be3b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/options/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -222,10 +222,8 @@
v-for="levelRequirement in props.item.levelRequirements"
>
<template
v-if="
Number(props.item.user.nextLevel.level) >
Number(levelRequirement.level)
"
v-if="!props.item.user.nextLevel.name || Number(props.item.user.nextLevel.level) >
Number(levelRequirement.level)"
>
<v-icon small color="green darken-4">done</v-icon>
</template>
Expand Down

0 comments on commit a09be3b

Please sign in to comment.