mirror of
https://github.com/knadh/listmonk.git
synced 2024-12-27 01:14:31 +08:00
Remove redundant event from bounces UI. Closes #1850.
This commit is contained in:
parent
cb99d600aa
commit
1c33d32b9e
1 changed files with 1 additions and 2 deletions
|
@ -21,8 +21,7 @@
|
||||||
|
|
||||||
<b-table :data="bounces.results" :hoverable="true" :loading="loading.bounces" default-sort="createdAt" checkable
|
<b-table :data="bounces.results" :hoverable="true" :loading="loading.bounces" default-sort="createdAt" checkable
|
||||||
@check-all="onTableCheck" @check="onTableCheck" :checked-rows.sync="bulk.checked" detailed show-detail-icon
|
@check-all="onTableCheck" @check="onTableCheck" :checked-rows.sync="bulk.checked" detailed show-detail-icon
|
||||||
@details-open="(row) => $buefy.toast.open(`Expanded ${row.user.first_name}`)" paginated backend-pagination
|
paginated backend-pagination pagination-position="both" @page-change="onPageChange" :current-page="queryParams.page" :per-page="bounces.perPage"
|
||||||
pagination-position="both" @page-change="onPageChange" :current-page="queryParams.page" :per-page="bounces.perPage"
|
|
||||||
:total="bounces.total" backend-sorting @sort="onSort">
|
:total="bounces.total" backend-sorting @sort="onSort">
|
||||||
<b-table-column v-slot="props" field="email" :label="$t('subscribers.email')" :td-attrs="$utils.tdID" sortable>
|
<b-table-column v-slot="props" field="email" :label="$t('subscribers.email')" :td-attrs="$utils.tdID" sortable>
|
||||||
<router-link :to="{ name: 'subscriber', params: { id: props.row.subscriberId } }">
|
<router-link :to="{ name: 'subscriber', params: { id: props.row.subscriberId } }">
|
||||||
|
|
Loading…
Reference in a new issue