mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed misc issues
This commit is contained in:
parent
735e9ba67b
commit
d1e3237e2e
@ -1370,7 +1370,8 @@ var enab_dis_level_up = function() {
|
|||||||
// Get transaction id to generate request url and
|
// Get transaction id to generate request url and
|
||||||
// to generate config files on runtime
|
// to generate config files on runtime
|
||||||
var transId = getTransId(),
|
var transId = getTransId(),
|
||||||
t_id = '';
|
t_id = '',
|
||||||
|
t_res;
|
||||||
|
|
||||||
if (transId.readyState == 4) {
|
if (transId.readyState == 4) {
|
||||||
t_res = JSON.parse(transId.responseText);
|
t_res = JSON.parse(transId.responseText);
|
||||||
|
@ -264,7 +264,7 @@ iframe {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.obj_properties fieldset > div > .pgadmin-control-group > label {
|
.obj_properties fieldset > div > .pgadmin-control-group > label {
|
||||||
height: 30px;
|
min-height: 28px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.obj_properties fieldset > .fieldset-content {
|
.obj_properties fieldset > .fieldset-content {
|
||||||
|
@ -231,7 +231,7 @@ define(
|
|||||||
method: 'POST',
|
method: 'POST',
|
||||||
data:{ 'data': JSON.stringify(args) },
|
data:{ 'data': JSON.stringify(args) },
|
||||||
success: function(res) {
|
success: function(res) {
|
||||||
if (res.data.status) {
|
if (res.data && res.data.status) {
|
||||||
//Do nothing as we are creating the job and exiting from the main dialog
|
//Do nothing as we are creating the job and exiting from the main dialog
|
||||||
Alertify.success(res.data.info);
|
Alertify.success(res.data.info);
|
||||||
pgBrowser.Events.trigger('pgadmin-bgprocess:created', self);
|
pgBrowser.Events.trigger('pgadmin-bgprocess:created', self);
|
||||||
|
Loading…
Reference in New Issue
Block a user