Skip to content

Commit

Permalink
Resolve bug for batch action on post codes page
Browse files Browse the repository at this point in the history
- User will be able to export in batches
- User will be able sort on the basis of created date

Signed-off-by: Sandeepa Singh <sandeepa.singh@ibm.com>
Change-Id: I6477e722f5aa8a2d19621fb3b851a6d2651634b0
  • Loading branch information
Sandeepa Singh authored and rfrandse committed Jun 30, 2022
1 parent 873e17a commit b76a1a5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/views/Logs/PostCodeLogs/PostCodeLogs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@
:selected-items-count="selectedRows.length"
@clear-selected="clearSelectedRows($refs.table)"
>
<template #export>
<template #toolbar-buttons>
<table-toolbar-export
:data="batchExportData"
:file-name="exportFileNameByDate('export')"
:file-name="exportFileNameByDate()"
/>
</template>
</table-toolbar>
Expand Down Expand Up @@ -218,6 +218,7 @@ export default {
{
key: 'date',
label: this.$t('pagePostCodeLogs.table.created'),
sortable: true,
},
{
key: 'timeStampOffset',
Expand Down

0 comments on commit b76a1a5

Please sign in to comment.