mirror of
https://github.com/bitwarden/desktop.git
synced 2024-11-02 08:30:14 +01:00
Reset input
This commit is contained in:
parent
94e4ea656e
commit
170aac94d2
@ -37,7 +37,8 @@ angular
|
||||
return;
|
||||
}
|
||||
|
||||
var files = document.getElementById('file').files;
|
||||
var fileEl = document.getElementById('file');
|
||||
var files = fileEl.files;
|
||||
if (!files || !files.length) {
|
||||
toastr.error(i18nService.selectFile, i18nService.errorsOccurred);
|
||||
return;
|
||||
@ -54,6 +55,12 @@ angular
|
||||
});
|
||||
$analytics.eventTrack('Added Attachment');
|
||||
toastr.success(i18nService.attachmentSaved);
|
||||
|
||||
// reset file input
|
||||
// ref: https://stackoverflow.com/a/20552042
|
||||
fileEl.type = '';
|
||||
fileEl.type = 'file';
|
||||
fileEl.value = '';
|
||||
}, function (err) {
|
||||
if (err) {
|
||||
toastr.error(err);
|
||||
|
Loading…
Reference in New Issue
Block a user