X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=blobdiff_plain;f=empathy%2Fempathy.jsx;h=9b37d0753f3f2839b4fb0e53c8966ff26f34b364;hp=2c70bc387f6d23cfbed01144fea26f3a142df1c3;hb=0e96dcd31acbae3c82d430db85da5be398e88264;hpb=e41040d89d5aaceabe7f5bb7a12230e2079ffd7e diff --git a/empathy/empathy.jsx b/empathy/empathy.jsx index 2c70bc3..9b37d07 100644 --- a/empathy/empathy.jsx +++ b/empathy/empathy.jsx @@ -574,7 +574,7 @@ class Ambiguities extends React.PureComponent {

Submission received

- The following players have completed judging: + The following players have completed judging:{' '} {[...this.props.players_judged].join(', ')}

@@ -736,7 +736,7 @@ class ActivePrompt extends React.PureComponent {

Submission received

- The following players have submitted their answers: + The following players have submitted their answers:{' '} {[...this.props.players_answered].join(', ')}

@@ -1067,7 +1067,7 @@ class Game extends React.PureComponent { {state.scores.scores.map(score => { return (

  • - {score.player}: {score.score} + {score.players.join("/")}: {score.score}
  • ); })} @@ -1077,7 +1077,7 @@ class Game extends React.PureComponent { {state.scores.words.map(word => { return (
  • - {`${word.word}: ${word.players.join(', ')}`} + {word.word} ({word.players.length}): {word.players.join(', ')}
  • ); })}