We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2461357 commit cbc052aCopy full SHA for cbc052a
pages/submit-meeting-summary/index.tsx
@@ -581,8 +581,8 @@ const SubmitMeetingSummary: NextPage = () => {
581
>
582
<option value="">Choose existing summary</option>
583
{meetings.map((meeting) => (
584
- <option key={meeting.meeting_id} value={meeting.meeting_id}>
585
- {formatDate(meeting.date)} - {meeting.username}
+ <option key={meeting.meeting_id} value={meeting.meeting_id} style={{ color: meeting.confirmed ? 'lightgreen' : 'black' }}>
+ {formatDate(meeting.date)} - {meeting.username} {meeting.confirmed ? 'Archived' : ''}
586
</option>
587
))}
588
</select>
0 commit comments