diff options
author | kushalpandya <kushal@gitlab.com> | 2017-07-20 23:40:14 +0530 |
---|---|---|
committer | kushalpandya <kushal@gitlab.com> | 2017-07-20 23:40:14 +0530 |
commit | fcdcc0d351e07f3838f71f6d617cf2f3d13c663a (patch) | |
tree | e294e53c61c92db928eb5409b20336d4a4660fef /app/assets/javascripts | |
parent | 80314ea876cee6cad2844754dd76b1319613d033 (diff) | |
download | gitlab-ce-fcdcc0d351e07f3838f71f6d617cf2f3d13c663a.tar.gz |
Spread used props31031-convert-protected-branches-es6
Diffstat (limited to 'app/assets/javascripts')
-rw-r--r-- | app/assets/javascripts/protected_branches/protected_branch_access_dropdown.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/assets/javascripts/protected_branches/protected_branch_access_dropdown.js b/app/assets/javascripts/protected_branches/protected_branch_access_dropdown.js index 0b29b365da8..38b1406a99f 100644 --- a/app/assets/javascripts/protected_branches/protected_branch_access_dropdown.js +++ b/app/assets/javascripts/protected_branches/protected_branch_access_dropdown.js @@ -5,12 +5,12 @@ export default class ProtectedBranchAccessDropdown { } initDropdown() { - const { onSelect } = this.options; - this.options.$dropdown.glDropdown({ - data: this.options.data, + const { $dropdown, data, onSelect } = this.options; + $dropdown.glDropdown({ + data, selectable: true, - inputId: this.options.$dropdown.data('input-id'), - fieldName: this.options.$dropdown.data('field-name'), + inputId: $dropdown.data('input-id'), + fieldName: $dropdown.data('field-name'), toggleLabel(item, $el) { if ($el.is('.is-active')) { return item.text; |