camelCase param name

This commit is contained in:
Alfredo Sumaran 2016-08-05 02:02:34 -05:00
parent 8f29c332b5
commit 1983eb6c30
1 changed files with 4 additions and 4 deletions

View File

@ -26,11 +26,11 @@ class ProtectedBranchDropdown {
return (selected && 'id' in selected) ? selected.title : 'Protected Branch';
},
fieldName: 'protected_branch[name]',
text(protected_branch) {
return _.escape(protected_branch.title);
text(protectedBranch) {
return _.escape(protectedBranch.title);
},
id(protected_branch) {
return _.escape(protected_branch.id);
id(protectedBranch) {
return _.escape(protectedBranch.id);
},
onFilter: this.toggleCreateNewButton.bind(this),
clicked: (item, $el, e) => {