diff --git a/src/components/Discover/Conformance/MoreModal.vue b/src/components/Discover/Conformance/MoreModal.vue index 33da358..3584bda 100644 --- a/src/components/Discover/Conformance/MoreModal.vue +++ b/src/components/Discover/Conformance/MoreModal.vue @@ -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 })), ];