Resolved issue if the binary path is not present/correct, then show error notification to add/correct the binary path.
refs #6984pull/63/head
parent
d644b4f94e
commit
3dcee71a92
|
@ -174,7 +174,14 @@ define([
|
|||
this.showBackupDialog(schema, treeItem, j, data, panel, typeOfDialog, serverIdentifier, extraData);
|
||||
},
|
||||
saveCallBack: function(data, dialog) {
|
||||
pgBrowser.Events.trigger('pgadmin-bgprocess:created', dialog);
|
||||
if(data.errormsg) {
|
||||
alertify.alert(
|
||||
gettext('Utility not found'),
|
||||
gettext(data.errormsg)
|
||||
);
|
||||
} else {
|
||||
pgBrowser.Events.trigger('pgadmin-bgprocess:created', dialog);
|
||||
}
|
||||
},
|
||||
showBackupDialog: function(schema, item, j, data, panel, typeOfDialog, serverIdentifier, extraData) {
|
||||
if(schema) {
|
||||
|
|
Loading…
Reference in New Issue