Skip to content
This repository was archived by the owner on Dec 8, 2022. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions src/views/Quiz/QuizAnswer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,19 @@
<v-card-text>
Congratulations, {{ User.displayName }}!
<br />
You have made it to the final boss level of The Dragon Quest.
Not only can you call yourself one of the best kid coders in the
land, you also win a $100 CodeWizardsHQ Gift Certificate.
<br />
<br />
Your skills are quite impressive and you will be rewarded with a
prize for your work.
<br /><br />
Tomorrow, 8:00 AM CT April 24, you will receive the final boss level
question. If you are able to conquer this question, you will be
eligible for the grand prize of $100 cash and free STEAM access code
Check your email tomorrow for your prize. You've qualified for the
final boss level round of The Dragon Quest tomorrow at 8:00 AM CT
April 24 and the chance to win $100 cash and free STEAM access code
from Endless.
<br />
<br />
Are you prepared?
<br />
<br />
<span v-if="Quiz.awaitNextQuestion">
That's all the questions available for now. The next question
unlocks {{ Quiz.nextUnlockMoment.fromNow() }}
Expand Down Expand Up @@ -206,6 +207,7 @@ export default {
},
mounted() {
if (this.Quiz.rank === this.Quiz.maxRank - 1) {
// eslint-disable-next-line no-console
console.log("Is last quiz!!");
this.isLastQuiz = true;
}
Expand Down