Skip to content

Commit

Permalink
fix(Tinebase): msgbox fluent interface not working
Browse files Browse the repository at this point in the history
  • Loading branch information
corneliusweiss committed Feb 20, 2024
1 parent 5f00fae commit d611ebb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tine20/library/ExtJS/src/widgets/MessageBox.js
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ Ext.Msg.show({
vueProps.otherConfigs.visible = true;
const d = this.getDialog("");
Ext.WindowMgr.bringToFront(d)
if (! opt.fn && !this.progress) {
if (! opt.fn && !options.progress) {
return new Promise((resolve) => {
opt.fn = function () {
resolve.call(opt.scope || window, _.get(arguments, '[2].prompt') ? [... arguments] : arguments[0]);
Expand Down

0 comments on commit d611ebb

Please sign in to comment.