mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Ensure that AlertifyJS should not be visible as a title for alert dialog. Fixes #5058
This commit is contained in:
parent
a44f17a2fc
commit
29c236c33d
@ -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.
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user