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 b1d699a commit c51396aCopy full SHA for c51396a
frontend/src/components/QueueTable.js
@@ -81,6 +81,7 @@ const QueueTable = observer(queueData => {
81
options={{ search: false, sorting: true }}
82
data={queueStore.queues[queueData.queueData].map(x => ({
83
urgency: x.urgency,
84
+ first: x.participant.first_name,
85
last: x.participant.last_name,
86
uid: x.participant.pp_id,
87
timeElapsed: moment(x.status.created_at).format("LT"),
@@ -105,6 +106,7 @@ const QueueTable = observer(queueData => {
105
106
),
107
customSort: (a, b) => +a.urgency[1] - +b.urgency[1],
108
},
109
+ { title: "First", field: "first" },
110
{ title: "Last", field: "last" },
111
{ title: "UID", field: "uid" },
112
{
0 commit comments