exclude text inputs from paste handler
This commit is contained in:
parent
c0d8300a8e
commit
87a517a169
|
@ -7,7 +7,7 @@ function getString(item) {
|
|||
export default function(state, emitter) {
|
||||
window.addEventListener('paste', async event => {
|
||||
if (state.route !== '/' || state.uploading) return;
|
||||
if (event.target.type === 'password') return;
|
||||
if (['password', 'text'].includes(event.target.type)) return;
|
||||
|
||||
const items = Array.from(event.clipboardData.items);
|
||||
const transferFiles = items.filter(item => item.kind === 'file');
|
||||
|
|
Loading…
Reference in New Issue