summaryrefslogtreecommitdiff
path: root/spec/javascripts
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2019-05-08 08:30:03 +0000
committerPhil Hughes <me@iamphill.com>2019-05-08 08:30:03 +0000
commit69cfdfaed3e5a63bc8af39ca4b42c932db1b7f75 (patch)
treeb9c94c6780b156f19c1fcfc13a823cb12a60e925 /spec/javascripts
parent18dd29c0c3c3367b3188a8bac687dea609736e9a (diff)
parent31861b0f050ab4ba728c8d17bbe9d1970c4ce190 (diff)
downloadgitlab-ce-69cfdfaed3e5a63bc8af39ca4b42c932db1b7f75.tar.gz
Merge branch 'fe-header-row' into 'master'
Adds header column to variables list Closes #46806 See merge request gitlab-org/gitlab-ce!28060
Diffstat (limited to 'spec/javascripts')
-rw-r--r--spec/javascripts/ci_variable_list/ajax_variable_list_spec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/javascripts/ci_variable_list/ajax_variable_list_spec.js b/spec/javascripts/ci_variable_list/ajax_variable_list_spec.js
index 481b1a4d4b0..2839922fbd3 100644
--- a/spec/javascripts/ci_variable_list/ajax_variable_list_spec.js
+++ b/spec/javascripts/ci_variable_list/ajax_variable_list_spec.js
@@ -113,7 +113,7 @@ describe('AjaxFormVariableList', () => {
it('hides secret values', done => {
mock.onPatch(VARIABLE_PATCH_ENDPOINT).reply(200, {});
- const row = container.querySelector('.js-row:first-child');
+ const row = container.querySelector('.js-row');
const valueInput = row.querySelector('.js-ci-variable-input-value');
const valuePlaceholder = row.querySelector('.js-secret-value-placeholder');