Skip to content
This repository was archived by the owner on Dec 8, 2022. It is now read-only.

Commit 2149593

Browse files
authored
Merge pull request #130 from codewizardshq/net8floz-patch-6
Update QuizAnswer.vue
2 parents e7e694f + 4b79c68 commit 2149593

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/views/Quiz/QuizAnswer.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<v-dialog v-model="showSuccessModal" persistent max-width="400">
3838
<v-card>
3939
<v-card-title class="headline">Your answer was correct!</v-card-title>
40-
<div v-if="Quiz.rank === Quiz.maxRank">
40+
<div v-if="Quiz.rank === Quiz.maxRank-1">
4141
<v-card-text>
4242
Congratulations, {{ User.displayName }}!
4343
<br />
@@ -136,7 +136,7 @@
136136
</v-dialog>
137137

138138
<final-question-success
139-
v-if="showSuccessModal && Quiz.rank === Quiz.maxRank"
139+
v-if="showSuccessModal && Quiz.rank === Quiz.maxRank-1"
140140
/>
141141
</div>
142142
</template>

0 commit comments

Comments
 (0)