Update response column
This commit is contained in:
@@ -311,8 +311,8 @@
|
|||||||
</Column>
|
</Column>
|
||||||
|
|
||||||
<Column
|
<Column
|
||||||
field="hasAnswer"
|
field="response"
|
||||||
header="Answer"
|
header="Response"
|
||||||
sortable
|
sortable
|
||||||
:exportFunction="
|
:exportFunction="
|
||||||
(row) => {
|
(row) => {
|
||||||
@@ -483,7 +483,7 @@ const exportExecutions = () => {
|
|||||||
Token: row.usedTokens || '',
|
Token: row.usedTokens || '',
|
||||||
Rating: row.rating || '',
|
Rating: row.rating || '',
|
||||||
Elapsed: row.endDate && row.startDate ? formatElapsed((new Date(row.endDate) - new Date(row.startDate)) / 1000) : '',
|
Elapsed: row.endDate && row.startDate ? formatElapsed((new Date(row.endDate) - new Date(row.startDate)) / 1000) : '',
|
||||||
Answer: row.latestStepStatus === 'ERROR' ? 'N' : 'Y'
|
Response: row.latestStepStatus === 'ERROR' ? 'N' : 'Y'
|
||||||
}));
|
}));
|
||||||
|
|
||||||
// Crea il CSV manualmente
|
// Crea il CSV manualmente
|
||||||
|
|||||||
Reference in New Issue
Block a user