fix(frontend): fixes #372 (adds .toLowerCase() on branch param name in query)
This commit is contained in:
@@ -141,7 +141,7 @@ export default {
|
||||
variables() {
|
||||
return {
|
||||
streamId: this.streamId,
|
||||
branchName: this.$route.params.branchName
|
||||
branchName: this.$route.params.branchName.toLowerCase()
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user