Skip to content

Commit

Permalink
also show hints section when interactive
Browse files Browse the repository at this point in the history
  • Loading branch information
nucleogenesis committed Jan 23, 2022
1 parent 44e1442 commit 330edf5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
- If we're not allowingHints, then it should be 100% because
they're the reason we'd go smaller at all
-->
<KGridItem :layout12="{ span: allowHints ? 6 : 12 }">
<KGridItem :layout12="{ span: allowHints || interactive ? 6 : 12 }">
<div
id="problem-area"
class="problem-area"
Expand All @@ -36,7 +36,7 @@
- It is a v-show because seems without the proper anchors in place
it will fail to properly mount the react component
-->
<KGridItem v-show="allowHints" :layout12="{ span: 6 }">
<KGridItem v-show="interactive || allowHints" :layout12="{ span: 6 }">
<div v-if="hinted" id="hintlabel" class="hintlabel" :dir="contentDirection">
{{ $tr("hintLabel") }}
</div>
Expand Down

0 comments on commit 330edf5

Please sign in to comment.