Skip to content

Commit 954ef98

Browse files
committed
Improvement: Update the submitter display in the event details tab
1 parent 7360cc2 commit 954ef98

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/components/events/partials/ModalTabsAndPages/EventDetailsWorkflowTab.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,11 @@ const EventDetailsWorkflowTab = ({
202202
<tr key={key}>
203203
<td>{item.id}</td>
204204
<td>{item.title}</td>
205-
<td>{item.submitter}</td>
205+
<td>
206+
{item.submitterName}
207+
{item.submitterEmail && (<>&lt;{item.submitterEmail}&gt;</>)}
208+
&nbsp;({item.submitter})
209+
</td>
206210
<td>
207211
{t("dateFormats.dateTime.medium", {
208212
dateTime: renderValidDate(item.submitted),

0 commit comments

Comments
 (0)