-
Notifications
You must be signed in to change notification settings - Fork 745
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EQM: Difficult questions reports fix #12372
EQM: Difficult questions reports fix #12372
Conversation
icon="notStarted" | ||
/> | ||
<KIcon | ||
v-else-if="!learner.correct" | ||
class="item svg-item" | ||
:style="{ fill: $themeTokens.incorrect }" | ||
icon="cancel" | ||
icon="incorrect" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This feels like it should be the right thing to use here... not sure why cancel
was used for both of these icons. cancel
no longer exists and I assume it's what turned into incorrect
given the $themeToken
that was used here.
notStarted
is used when the learner has no attemptsincorrect
is used when the user answered incorrectly (and presumably needs help)
Build Artifacts
|
Hi @nucleogenesis I confirm that now it's possible to see the details of the difficult questions however when I go to Coach > Reports > Lesson > Difficult questions I am not seeing the incorrect answers of the learner: 2024-06-27_16-23-53.mp4If that's not caused by the changes made here, I can file a follow-up issue. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All changes make sense, and manual testing confirms the fix.
Summary
Closes #12164 - where questions were needed in
questionDetail/handlers.js
we were still expecting the Exam.question_sources v2 schema. I did a cursory search for possible other uses ofquestion_sources
to derive questions but found nothing else.🎆 BONUS FIXES 🎆
Before:
Not all issues shown in screenshot
px
valuesAfter:
Not all fixes shown in screenshot
em
valuesReviewer guidance