Skip to content

Commit

Permalink
fix branch name
Browse files Browse the repository at this point in the history
  • Loading branch information
mms-gianni committed Dec 14, 2022
1 parent 63d91b3 commit 3aea5a8
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions client/src/components/apps/new.vue
Original file line number Diff line number Diff line change
Expand Up @@ -646,10 +646,7 @@ export default {
axios.get('/api/repo/'+gitprovider+"/"+gitrepoB64+"/branches/list").then(response => {
for (let i = 0; i < response.data.length; i++) {
this.branchesList.push({
text: response.data[i],
value: response.data[i],
});
this.branchesList.push(response.data[i]);
}
});
},
Expand Down

0 comments on commit 3aea5a8

Please sign in to comment.