]> git.cworth.org Git - lmno.games/commitdiff
Add the text of the active prompt to the judging and scoring screens
authorCarl Worth <cworth@cworth.org>
Sun, 28 Jun 2020 15:19:13 +0000 (08:19 -0700)
committerCarl Worth <cworth@cworth.org>
Sun, 28 Jun 2020 15:19:13 +0000 (08:19 -0700)
It's often helpful to be able to refer back and answer "What was the
exact wording of this category again?".

empathy/empathy.jsx

index 9b37d0753f3f2839b4fb0e53c8966ff26f34b364..d7e6f6f63df15514bfcec0758616797c54655fdc 100644 (file)
@@ -611,6 +611,7 @@ class Ambiguities extends React.PureComponent {
           what goes around comes around, so it's best to be generous when
           judging.
         </p>
           what goes around comes around, so it's best to be generous when
           judging.
         </p>
+        <h2>{this.props.prompt.prompt}</h2>
         {this.state.word_sets.map(set => {
           return (
             <div
         {this.state.word_sets.map(set => {
           return (
             <div
@@ -1062,6 +1063,7 @@ class Game extends React.PureComponent {
     if (state.scores) {
       return (
         <div className="scores">
     if (state.scores) {
       return (
         <div className="scores">
+          <h2>{state.active_prompt.prompt}</h2>
           <h2>Scores</h2>
           <ul>
             {state.scores.scores.map(score => {
           <h2>Scores</h2>
           <ul>
             {state.scores.scores.map(score => {