Skip to content

Commit

Permalink
Fix incorrect filter query in bounces UI. Closes #1820.
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed Apr 13, 2024
1 parent 1d32d4c commit 1bf7e36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/Bounces.vue
Expand Up @@ -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>
Expand Down

0 comments on commit 1bf7e36

Please sign in to comment.