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

@ -19,5 +19,6 @@ Bug fixes
*********
| `Issue #3789 <https://redmine.postgresql.org/issues/3789>`_ - Ensure context menus never get hidden below the menu bar.
| `Issue #3913 <https://redmine.postgresql.org/issues/3913>`_ - Ensure the correct "running at" agent is shown when a pgAgent job is executing.
| `Issue #4845 <https://redmine.postgresql.org/issues/4845>`_ - Fixed potential error in the properties dialog for the Code tab.
| `Issue #4850 <https://redmine.postgresql.org/issues/4850>`_ - Fixed an issue where Datetimepicker control opens when clicking on the label.

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;