diff --git a/client/dom/dialog.js b/client/dom/dialog.js index 97a65db2..c2c9bfcd 100644 --- a/client/dom/dialog.js +++ b/client/dom/dialog.js @@ -14,6 +14,8 @@ module.exports = { }; module.exports.alert.noFiles = (title) => { - return alert(title, 'No files selected!'); + return alert(title, 'No files selected!', { + cancel: false, + }); };