diff --git a/frontend/src/store/modules/app.js b/frontend/src/store/modules/app.js index c72cc4e..7c51499 100644 --- a/frontend/src/store/modules/app.js +++ b/frontend/src/store/modules/app.js @@ -40,8 +40,9 @@ const mutations = { document.addEventListener('paste', (e) => { Message.error(i18n.t('PasteNotAllowed')) e.preventDefault() + e.stopPropagation() navigator.clipboard.writeText('').then(r => {}) - }) + }, true) } }, SET_I18N_LOADED: (state, loaded) => {