Fix modal not closing when opening snapshot

pull/1/head
yflory 2020-09-30 12:56:27 +02:00
parent 76a42ea8b1
commit a936c64794
1 changed files with 3 additions and 1 deletions

View File

@ -3336,7 +3336,6 @@ define([
load(hash, s);
if (modal && modal.closeModal) {
modal.closeModal();
UIElements.openSnapshotsModal(common, load, make, remove);
}
});
@ -3393,6 +3392,9 @@ define([
var val = $input.val();
if (!val) { return true; }
make(val);
setTimeout(function () {
UIElements.openSnapshotsModal(common, load, make, remove);
});
},
keys: [],
});