Skip to content

Commit

Permalink
Fix missing subset= param for seasonal CanGRD selection
Browse files Browse the repository at this point in the history
  • Loading branch information
kngai committed Nov 18, 2024
1 parent a5fde87 commit f5e0088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/CanGRDForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ export default {
subset.push(`season("${this.oapicIdTimePeriod}")`)
}
if (subset.length > 0) {
urlParams.push(subset.join(','))
urlParams.push(`subset=${subset.join(',')}`)
}
// datetime (single YYYY-MM or range YYYY-MM/YYYY-MM)
Expand Down

0 comments on commit f5e0088

Please sign in to comment.