Browse Source

Fix that the copy button of verify link did not work. (#8938)

pull/4/head
mayaeh 5 years ago
committed by Eugen Rochko
parent
commit
e50cb5f4bd
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/javascript/packs/public.js

+ 1
- 1
app/javascript/packs/public.js View File

@ -184,7 +184,7 @@ function main() {
});
delegate(document, '.input-copy button', 'click', ({ target }) => {
const input = target.parentNode.querySelector('input');
const input = target.parentNode.querySelector('.input-copy__wrapper input');
input.focus();
input.select();

Loading…
Cancel
Save