Skip to content

Commit

Permalink
fix: use simple notation for doublons query params
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e committed Nov 3, 2024
1 parent 9f3a31d commit af1c22b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/ui/src/components/ProposalLabels.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const validLabels = computed(() => {
? {
name: 'space-proposals',
params: { space: `${space.network}:${space.id}` },
query: { 'labels[]': label.id }
query: { labels: label.id }
}
: undefined
"
Expand All @@ -57,7 +57,7 @@ const validLabels = computed(() => {
? {
name: 'space-proposals',
params: { space: `${space.network}:${space.id}` },
query: { 'labels[]': label.id }
query: { labels: label.id }
}
: undefined
"
Expand Down

0 comments on commit af1c22b

Please sign in to comment.