quizzes are now graded as booleans

This commit is contained in:
Jen Looper 2022-04-29 18:21:26 -04:00
Родитель 7ed66da8e7
Коммит eec5381217
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -65,7 +65,7 @@ export default {
handleAnswerClick(isCorrect) {
this.error = false;
let nextQuestion = this.currentQuestion + 1;
if (isCorrect == "true") {
if (isCorrect) {
//always 3 questions per quiz
if (nextQuestion < 3) {
this.currentQuestion = nextQuestion;