X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=blobdiff_plain;f=empathy%2Fempathy.jsx;h=163b977cbb8c474560a4dfa9cf24c1a03926e56b;hp=e887b1b8b9b1af33ddc76aa751613f66a2253205;hb=f9c9dec19b3ee6e272683301d49c3add6fb176f8;hpb=49d80bcfff46b8d9efa846decf9415e43ea354f5 diff --git a/empathy/empathy.jsx b/empathy/empathy.jsx index e887b1b..163b977 100644 --- a/empathy/empathy.jsx +++ b/empathy/empathy.jsx @@ -572,26 +572,28 @@ class Ambiguities extends React.PureComponent { let still_waiting = null; const judging_players = Object.keys(this.props.players_judging); if (judging_players.length) { - still_waiting = [ -

- Still waiting for the following player - {judging_players.length > 1 ? 's' : '' } - : -

, - - ]; + still_waiting = ( +
+

+ Still waiting for the following player + {judging_players.length > 1 ? 's' : '' } + : +

+ +
+ ); } if (this.props.players_judged.has(this.props.player.name)) { @@ -745,26 +747,28 @@ class ActivePrompt extends React.PureComponent { let still_waiting = null; const answering_players = Object.keys(this.props.players_answering);; if (answering_players.length) { - still_waiting = [ -

- Still waiting for the following player - {answering_players.length > 1 ? 's' : ''} - : -

, - - ]; + still_waiting = ( +
+

+ Still waiting for the following player + {answering_players.length > 1 ? 's' : ''} + : +

+ +
+ ); } if (this.props.players_answered.has(this.props.player.name)) {