add comma's between words on "submitted words" instead of being jumbled up

This commit is contained in:
Ray 2023-12-29 10:31:58 +00:00 committed by GitHub
parent 533f0a7e04
commit 84ac6ac30b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 5 deletions

View File

@ -15,7 +15,3 @@ Simple check boxes for the various words i commonly use as joking insults such a
- fr fr - fr fr
- balls - balls
CURRENT ISSUES:
Display list of bingos at bottom in a neat order and not jumble the words used.

View File

@ -177,7 +177,7 @@ const db = getFirestore(getApp());
<h3>What caused Ray's moment?:</h3> <h3>What caused Ray's moment?:</h3>
<p>{incident.context}</p> <p>{incident.context}</p>
<h3>What word's did Ray use this time?:</h3> <h3>What word's did Ray use this time?:</h3>
<p>{incident.selectedOptions}</p> <p>{incident.selectedOptions.join(', ')}</p>
</div> </div>
))} ))}
</Form.Group> </Form.Group>