removed backspace functionality for team folder and sharedwithme homepage

This commit is contained in:
Čarodej
2022-03-15 11:21:14 +01:00
parent d0b4b729c9
commit dfeef6fdf8
22 changed files with 80 additions and 63 deletions

View File

@@ -60,7 +60,7 @@ export default {
events.$emit('emailsInputValues', this.emails)
},
removeLastEmail(event) {
// If is input empty and presse backspace remove last email from array
// If is input empty and press backspace remove last email from array
if (event.code === 'Backspace' && this.email === '') this.emails.pop()
},
handleEmail() {