Browse Source

Remove jQuery `.attr` from the quick pull request button text (#29916)

- Switched from jQuery `.attr` to plain javascript `.getAttribute`
- Tested the quick pull request button text change functionality and it
works as before

Signed-off-by: Yarden Shoham <git@yardenshoham.com>
tags/v1.22.0-rc0
Yarden Shoham 2 months ago
parent
commit
4cfda02419
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      web_src/js/features/repo-editor.js

+ 1
- 1
web_src/js/features/repo-editor.js View File

@@ -72,7 +72,7 @@ export function initRepoEditor() {
hideElem($('.quick-pull-branch-name'));
document.querySelector('.quick-pull-branch-name input').required = false;
}
$('#commit-button').text($(this).attr('button_text'));
$('#commit-button').text(this.getAttribute('button_text'));
});

const joinTreePath = ($fileNameEl) => {

Loading…
Cancel
Save