Skip to content

Commit

Permalink
[FIX] Issues when uploading in datastore multiple times
Browse files Browse the repository at this point in the history
  • Loading branch information
whikernel committed Mar 18, 2024
1 parent b31969c commit 0a5cf09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/app/static/assets/js/iris/datastore.js
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ async function save_ds_multi_files(node, index_i) {
let index = index_i === undefined ? 0 : index_i;
if (index >= totalFiles) {
window.swal.close();
$('#modal_ds_file').modal("hide").empty();
$('#modal_ds_file').modal("hide");
return;
}
let file = $('#input_upload_ds_files').prop('files')[index];
Expand Down

0 comments on commit 0a5cf09

Please sign in to comment.