IO-539 Fix hanging confirmation.
This commit is contained in:
@@ -429,6 +429,6 @@ function confirmDialog(msg) {
|
||||
return new Promise(function (resolve, reject) {
|
||||
let confirmed = window.confirm(msg);
|
||||
|
||||
return confirmed ? resolve(true) : reject(false);
|
||||
return confirmed ? resolve(true) : resolve(false);
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user