Skip to content

Commit

Permalink
fixed: loading modal not closed
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Kueng committed Oct 18, 2023
1 parent 01c6a80 commit b8abe46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions app/manifests/static/manifests/js/manifests.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ function initManifestsTable() {
complete: function(jqXHR, textStatus) {
window.clearInterval(poll_loop);
$("#item-count-badge").text(jqXHR.responseJSON.length);
$('#process_progress').modal('hide');
},
global: false,
},
Expand Down
3 changes: 1 addition & 2 deletions app/pkgsinfo/static/pkgsinfo/js/pkgsinfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ function initPkginfoTable() {
complete: function(jqXHR, textStatus){
window.clearInterval(poll_loop);
$("#item-count-badge").text(jqXHR.responseJSON.length);
$('#process_progress').modal('hide');
},
global: false,
},
Expand All @@ -201,7 +202,6 @@ function initPkginfoTable() {
},
{
"targets": 1,
//"width": "40%",
"render": render_versions,
"searchable": false,
"orderable": false,
Expand All @@ -222,7 +222,6 @@ function initPkginfoTable() {
searchField.keyup(function(){
thisTable.search($(this).val()).draw();
});
//searchField.trigger('keyup');
}

function cancelEdit() {
Expand Down

0 comments on commit b8abe46

Please sign in to comment.