fix(frontend): fixes #372 (adds .toLowerCase() on branch param name in query)

This commit is contained in:
Dimitrie Stefanescu
2021-09-01 17:14:49 +01:00
parent 30a8e72d2f
commit 809486d3a2
@@ -141,7 +141,7 @@ export default {
variables() {
return {
streamId: this.streamId,
branchName: this.$route.params.branchName
branchName: this.$route.params.branchName.toLowerCase()
}
}
},