Ensure the correct "running at" agent is shown when a pgAgent job is executing. Fixes #3913

This commit is contained in:
Aditya Toshniwal
2019-10-25 11:39:40 +01:00
committed by Dave Page
parent a804485a4c
commit 4125360dfb
2 changed files with 2 additions and 1 deletions

View File

@@ -88,7 +88,7 @@ define('pgadmin.node.pga_job', [
var d = pgBrowser.Node.Model.prototype.parse.apply(this, arguments);
if (d) {
d.jobrunningat = d.jaghostagent || gettext('Not running currently.');
d.jobrunningat = d.jagagent || gettext('Not running currently.');
d.jlgstatus = d.jlgstatus || gettext('Unknown');
}
return d;