mirror of
https://github.com/knadh/listmonk.git
synced 2025-10-06 13:26:17 +08:00
Fix incorrect filter query in bounces UI. Closes #1820.
This commit is contained in:
parent
1d32d4c368
commit
1bf7e362bf
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@
|
|||
</b-table-column>
|
||||
|
||||
<b-table-column v-slot="props" field="type" :label="$t('globals.fields.type')" sortable>
|
||||
<router-link :to="{ name: 'bounces', query: { source: props.row.type } }">
|
||||
<router-link :to="{ name: 'bounces', query: { type: props.row.type } }">
|
||||
{{ $t(`bounces.${props.row.type}`) }}
|
||||
</router-link>
|
||||
</b-table-column>
|
||||
|
|
Loading…
Add table
Reference in a new issue