Fix incorrect filter query in bounces UI. Closes #1820.

This commit is contained in:
Kailash Nadh 2024-04-13 08:52:25 +05:30
parent 1d32d4c368
commit 1bf7e362bf

View file

@ -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>