fixed paste email bug
This commit is contained in:
parent
5b4f623070
commit
7710cf98e9
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ function getString(item) {
|
|||
export default function(state, emitter) {
|
||||
window.addEventListener('paste', async event => {
|
||||
if (state.route !== '/' || state.uploading) return;
|
||||
if (['password', 'text'].includes(event.target.type)) return;
|
||||
if (['password', 'text', 'email'].includes(event.target.type)) return;
|
||||
|
||||
const items = Array.from(event.clipboardData.items);
|
||||
const transferFiles = items.filter(item => item.kind === 'file');
|
||||
|
|
Loading…
Reference in a new issue