Issue #49: Delete sortable.

This commit is contained in:
chiayin
2023-09-22 11:02:34 +08:00
parent 9a4b3c4180
commit b6a11f5ff9

View File

@@ -120,8 +120,8 @@ export default {
const result = [
{ field: 'id', header: 'Case Id' },
{ field: 'started_at', header: 'Start Date' },
{ field: 'completed_at', header: 'End Date' },
{ field: 'started_at', header: 'Start time' },
{ field: 'completed_at', header: 'End time' },
...data[0].facets.map((fac, index) => ({ field: `fac_${index}`, header: facetName(fac.name) })),
...data[0].attributes.map((att, index) => ({ field: `att_${index}`, header: att.key })),
];