diff --git a/docs/en_US/release_notes_4_15.rst b/docs/en_US/release_notes_4_15.rst index b050882a9..ffbe53f70 100644 --- a/docs/en_US/release_notes_4_15.rst +++ b/docs/en_US/release_notes_4_15.rst @@ -19,5 +19,6 @@ Bug fixes ********* | `Issue #3789 `_ - Ensure context menus never get hidden below the menu bar. +| `Issue #3913 `_ - Ensure the correct "running at" agent is shown when a pgAgent job is executing. | `Issue #4845 `_ - Fixed potential errorĀ in the properties dialog for the Code tab. | `Issue #4850 `_ - Fixed an issue where Datetimepicker control opens when clicking on the label. \ No newline at end of file diff --git a/web/pgadmin/browser/server_groups/servers/pgagent/static/js/pga_job.js b/web/pgadmin/browser/server_groups/servers/pgagent/static/js/pga_job.js index 4f719043c..6bf01c9ba 100644 --- a/web/pgadmin/browser/server_groups/servers/pgagent/static/js/pga_job.js +++ b/web/pgadmin/browser/server_groups/servers/pgagent/static/js/pga_job.js @@ -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;