mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fix a typo in the error handling in the browser that caused some errors to be reported to the console only.
This commit is contained in:
parent
071b609a44
commit
a67c4fc1dc
@ -1430,10 +1430,10 @@ function(require, $, _, S, Bootstrap, pgAdmin, Alertify, CodeMirror) {
|
|||||||
success();
|
success();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
error: function(jqx, error, status) {
|
error: function(xhr, error, status) {
|
||||||
if (
|
if (
|
||||||
!Alertify.pgHandleItemError(
|
!Alertify.pgHandleItemError(
|
||||||
xhr, error, message, {item: _i, info: info}
|
xhr, error, status, {item: _i, info: info}
|
||||||
)
|
)
|
||||||
) {
|
) {
|
||||||
var msg = xhr.responseText,
|
var msg = xhr.responseText,
|
||||||
|
Loading…
Reference in New Issue
Block a user