From d82276f171fa3a918e8d78db68e7c5b75404e309 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sat, 27 Jun 2020 17:39:52 -0700 Subject: [PATCH] Add score for each word in the display of results for each round This really helps in picking out whether two words were of equal value or not. --- empathy/empathy.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/empathy/empathy.jsx b/empathy/empathy.jsx index 044d4e0..407a4fe 100644 --- a/empathy/empathy.jsx +++ b/empathy/empathy.jsx @@ -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(', ')}
  • ); })} -- 2.43.0