mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Close button added to the alertify message box, which pops up in case of backend error. Fixes #3290
This commit is contained in:
committed by
Akshay Joshi
parent
eb35629712
commit
b653b742ed
@@ -420,10 +420,10 @@ define('pgadmin.node.server', [
|
||||
return {
|
||||
buttons: [{
|
||||
text: gettext('Ok'), key: 13, className: 'btn btn-primary',
|
||||
attrs:{name:'submit'},
|
||||
attrs: {name:'submit'},
|
||||
},{
|
||||
text: gettext('Cancel'), key: 27, className: 'btn btn-danger',
|
||||
attrs:{name:'cancel'},
|
||||
text: gettext('Cancel'), key: 27,
|
||||
className: 'btn btn-danger', attrs: {name: 'cancel'},
|
||||
}],
|
||||
// Set options for dialog
|
||||
options: {
|
||||
@@ -1046,6 +1046,7 @@ define('pgadmin.node.server', [
|
||||
text: gettext('OK'), key: 13, className: 'btn btn-primary',
|
||||
},{
|
||||
text: gettext('Cancel'), className: 'btn btn-danger',
|
||||
key: 27,
|
||||
}],
|
||||
focus: {element: '#password', select: true},
|
||||
options: {
|
||||
|
||||
Reference in New Issue
Block a user