From 0e96dcd31acbae3c82d430db85da5be398e88264 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sun, 28 Jun 2020 08:17:58 -0700 Subject: [PATCH] empathy: Add some missing whitespace JSX is sometimes annoyingly aggressive about eliminating whitespace between textual content and component content. I'm not sure if this solution is the best approach, but it works at least. --- empathy/empathy.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/empathy/empathy.jsx b/empathy/empathy.jsx index 407a4fe..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(', ')}

-- 2.43.0