fixed paste email bug
This commit is contained in:
parent
5b4f623070
commit
7710cf98e9
@ -7,7 +7,7 @@ function getString(item) {
|
|||||||
export default function(state, emitter) {
|
export default function(state, emitter) {
|
||||||
window.addEventListener('paste', async event => {
|
window.addEventListener('paste', async event => {
|
||||||
if (state.route !== '/' || state.uploading) return;
|
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 items = Array.from(event.clipboardData.items);
|
||||||
const transferFiles = items.filter(item => item.kind === 'file');
|
const transferFiles = items.filter(item => item.kind === 'file');
|
||||||
|
Loading…
Reference in New Issue
Block a user