mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Ensure the correct "running at" agent is shown when a pgAgent job is executing. Fixes #3913
This commit is contained in:
parent
a804485a4c
commit
4125360dfb
@ -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.
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user