Merge "Fix deprecated use of 'jQuery.fn.select()' shorthand event"

This commit is contained in:
Zuul 2023-07-26 16:29:01 +00:00 committed by Gerrit Code Review
commit 47e2d23740
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@
}
function copyPrivateKey() {
angular.element('textarea').select();
angular.element('textarea').trigger('select');
document.execCommand('copy');
}