diff options
author | Clement Ho <ClemMakesApps@gmail.com> | 2018-05-22 17:27:53 -0500 |
---|---|---|
committer | Clement Ho <ClemMakesApps@gmail.com> | 2018-05-22 17:27:53 -0500 |
commit | 1c0b943fabab31ba9af9d2874b131447dd07406f (patch) | |
tree | 263a89658d55729e392f250e529c1615b4b81eba | |
parent | 6dd13180ccbfecb0038510fa55808dda5952342f (diff) | |
download | gitlab-ce-1c0b943fabab31ba9af9d2874b131447dd07406f.tar.gz |
Scope to .dropdown
-rw-r--r-- | app/assets/javascripts/ci_variable_list/ci_variable_list.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/ci_variable_list/ci_variable_list.js b/app/assets/javascripts/ci_variable_list/ci_variable_list.js index e3391cbca64..6d1053385fc 100644 --- a/app/assets/javascripts/ci_variable_list/ci_variable_list.js +++ b/app/assets/javascripts/ci_variable_list/ci_variable_list.js @@ -142,7 +142,7 @@ export default class VariableList { }); // Close any dropdowns - $rowClone.find('.show').each((index, $dropdown) => { + $rowClone.find('.dropdown.show').each((index, $dropdown) => { $dropdown.classList.remove('show'); }); |