Skip to content

Commit 233f1aa

Browse files
Williangalvanipatrickelectric
authored andcommitted
frontend: defaultParameterLoader: add trailing slash to filters
1 parent da6d8c7 commit 233f1aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/frontend/src/components/wizard/DefaultParamLoader.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@ export default Vue.extend({
126126
}),
127127
computed: {
128128
filtered_param_sets(): Dictionary<Dictionary<number>> | undefined {
129-
const fw_patch = `${this.vehicle}/${this.version}/${this.board}`
130-
const fw_minor = `${this.vehicle}/${this.version?.major}.${this.version?.minor}/${this.board}`
131-
const fw_major = `${this.vehicle}/${this.version?.major}/${this.board}`
129+
const fw_patch = `${this.vehicle}/${this.version}/${this.board}/`
130+
const fw_minor = `${this.vehicle}/${this.version?.major}.${this.version?.minor}/${this.board}/`
131+
const fw_major = `${this.vehicle}/${this.version?.major}/${this.board}/`
132132
133133
// returns a new dict where the keys start with the fullname
134134
// e.g. "ArduSub/BlueROV2/4.0.3" -> "ArduSub/BlueROV2/4.0.3/BlueROV2"

0 commit comments

Comments
 (0)