Skip to content

Commit

Permalink
Session: change exam mode selection icon from cross to check
Browse files Browse the repository at this point in the history
Some users said they were confused as to why they got to see a `cross`
icon ("x") in exam mode (thinking "is this wrong?"), maybe a grey
`check` icon is less confusing.
  • Loading branch information
schu committed May 14, 2024
1 parent 87c7f9d commit 1ca4504
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions public/build/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"file": "assets/SessionQuestionView-q7YaB6Di.css",
"src": "_SessionQuestionView-!~{00p}~.js"
},
"_SessionQuestionView-D6sNm0BV.js": {
"file": "assets/SessionQuestionView-D6sNm0BV.js",
"_SessionQuestionView-XV_4_wru.js": {
"file": "assets/SessionQuestionView-XV_4_wru.js",
"name": "SessionQuestionView",
"imports": [
"_index-CovtvcR3.js",
Expand Down Expand Up @@ -186,12 +186,12 @@
]
},
"resources/js/QuestionView.js": {
"file": "assets/QuestionView-IDts8cT0.js",
"file": "assets/QuestionView-DXJ2ZuFN.js",
"name": "QuestionView",
"src": "resources/js/QuestionView.js",
"isEntry": true,
"imports": [
"_SessionQuestionView-D6sNm0BV.js",
"_SessionQuestionView-XV_4_wru.js",
"_index-CovtvcR3.js",
"_each-CtuGQY9F.js",
"_purify.es-wjz4va4G.js",
Expand All @@ -201,7 +201,7 @@
]
},
"resources/js/SessionView.js": {
"file": "assets/SessionView-BIWL5OeJ.js",
"file": "assets/SessionView-DOpZuBim.js",
"name": "SessionView",
"src": "resources/js/SessionView.js",
"isEntry": true,
Expand All @@ -212,7 +212,7 @@
"_auto-DTdYmgno.js",
"_SessionProgressBar-FS8-6FmE.js",
"_each-CtuGQY9F.js",
"_SessionQuestionView-D6sNm0BV.js",
"_SessionQuestionView-XV_4_wru.js",
"_StatsHelper-B91isISU.js",
"_UserSettingsStore-B1GYynLG.js",
"__commonjsHelpers-Cpj98o6Y.js",
Expand Down
2 changes: 1 addition & 1 deletion resources/js/SessionAnswerView.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
{:else if !examMode && isChosenAnswer}
<span class="text-danger-dark fw-bold fs-3">&cross;</span>
{:else if examMode && isChosenAnswer}
<span class="text-secondary fw-bold fs-3">&cross;</span>
<span class="text-secondary fw-bold fs-3">&check;</span>
{/if}
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion resources/js/SessionQuestionIndexView.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
return '<span class="text-dark fw-bold">&rightarrow;</span>';
}
if (examMode) {
return '<span class="text-dark fw-bold">&cross;</span>';
return '<span class="text-dark fw-bold">&check;</span>';
}
if (answerChoice.is_correct) {
if (answerChoice.help_used) {
Expand Down

0 comments on commit 1ca4504

Please sign in to comment.