Add label to distinguish submissions and for debugging

This commit is contained in:
Ray 2023-12-29 10:16:36 +00:00 committed by GitHub
parent 6e9f822b16
commit a3af9e0833
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -168,6 +168,8 @@ const db = getFirestore(getApp());
<h2>Existing incidents in the database:</h2> <h2>Existing incidents in the database:</h2>
{incidents.map((incident) => ( {incidents.map((incident) => (
<div key={incident.id}> <div key={incident.id}>
<h3><u>Incident ID:</u></h3>
<p>{incident.id}</p>
<h3>What date did this shennanigans occur?:</h3> <h3>What date did this shennanigans occur?:</h3>
<p>{incident.date}</p> <p>{incident.date}</p>
<h3>Who submitted this:</h3> <h3>Who submitted this:</h3>