diff --git a/src/scripts/clientUtils.js b/src/scripts/clientUtils.js index 719d722a2b..fa9f232439 100644 --- a/src/scripts/clientUtils.js +++ b/src/scripts/clientUtils.js @@ -143,7 +143,7 @@ export function alert(options) { } import('alert').then(({default: alert}) => { - alert.default({ + alert({ title: options.title || Globalize.translate('HeaderAlert'), text: options.message }).then(options.callback || function () {});