Ensure that AlertifyJS should not be visible as a title for alert dialog. Fixes #5058

This commit is contained in:
Akshay Joshi 2020-02-24 12:33:23 +05:30
parent a44f17a2fc
commit 29c236c33d
2 changed files with 3 additions and 2 deletions

View File

@ -22,5 +22,6 @@ Housekeeping
Bug fixes
*********
| `Issue #5058 <https://redmine.postgresql.org/issues/5058>`_ - Ensure that AlertifyJS should not be visible as a title for alert dialog.
| `Issue #5107 <https://redmine.postgresql.org/issues/5107>`_ - Set proper focus on tab navigation for file manager dialog.
| `Issue #5115 <https://redmine.postgresql.org/issues/5115>`_ - Fix an issue where command and statements were parsed incorrectly for Rules.

View File

@ -443,7 +443,7 @@ define([
);
}
} else {
Alertify.alert(gettext('This object is not user editable.'),
Alertify.alert(gettext('Edit object'), gettext('This object is not user editable.'),
function() {
return true;
});
@ -538,7 +538,7 @@ define([
}
);
} else {
Alertify.alert(gettext('This object cannot be deleted.'),
Alertify.alert(gettext('Delete object'), gettext('This object cannot be deleted.'),
function() {
return true;
}