add comma's between words on "submitted words" instead of being jumbled up
This commit is contained in:
parent
533f0a7e04
commit
84ac6ac30b
|
@ -15,7 +15,3 @@ Simple check boxes for the various words i commonly use as joking insults such a
|
|||
- fr fr
|
||||
- balls
|
||||
|
||||
|
||||
CURRENT ISSUES:
|
||||
|
||||
Display list of bingos at bottom in a neat order and not jumble the words used.
|
||||
|
|
|
@ -177,7 +177,7 @@ const db = getFirestore(getApp());
|
|||
<h3>What caused Ray's moment?:</h3>
|
||||
<p>{incident.context}</p>
|
||||
<h3>What word's did Ray use this time?:</h3>
|
||||
<p>{incident.selectedOptions}</p>
|
||||
<p>{incident.selectedOptions.join(', ')}</p>
|
||||
</div>
|
||||
))}
|
||||
</Form.Group>
|
||||
|
|
Loading…
Reference in New Issue