diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2022-05-12 09:08:08 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2022-05-12 09:08:08 +0000 |
commit | 71d34aac9a0fae0507c265929767422391816b01 (patch) | |
tree | dedb769442c9576e2f44bf3c500b013beb9604d9 /spec/frontend/access_tokens | |
parent | 90726a8ccc9df6d9b5ff4f5e1eb31d015c1db8e2 (diff) | |
download | gitlab-ce-71d34aac9a0fae0507c265929767422391816b01.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/access_tokens')
-rw-r--r-- | spec/frontend/access_tokens/index_spec.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/frontend/access_tokens/index_spec.js b/spec/frontend/access_tokens/index_spec.js index 5f0a7dfc775..1d8ac7cec25 100644 --- a/spec/frontend/access_tokens/index_spec.js +++ b/spec/frontend/access_tokens/index_spec.js @@ -39,7 +39,7 @@ describe('access tokens', () => { const input = document.createElement('input'); input.setAttribute('name', nameAttribute); - input.dataset.jsName = fieldName; + input.setAttribute('data-js-name', fieldName); input.setAttribute('id', idAttribute); input.setAttribute('placeholder', 'Foo bar'); input.setAttribute('value', '1,2'); |