Fixed an issue where pgAgent job schedule dialog is not opening for edit. #7070
parent
c8d6ff8a6d
commit
09b83e54a2
|
|
@ -30,5 +30,6 @@ Housekeeping
|
|||
Bug fixes
|
||||
*********
|
||||
|
||||
| `Issue #6781 <https://github.com/pgadmin-org/pgadmin4/issues/6193>`_ - Fixed an issue where query tool title did not change after "Save As" until any new change is made.
|
||||
| `Issue #6193 <https://github.com/pgadmin-org/pgadmin4/issues/6193>`_ - Fixed an issue where query tool title did not change after "Save As" until any new change is made.
|
||||
| `Issue #6781 <https://github.com/pgadmin-org/pgadmin4/issues/6781>`_ - Fixed an issue where export servers was not adding extension if not specified.
|
||||
| `Issue #7070 <https://github.com/pgadmin-org/pgadmin4/issues/7070>`_ - Fixed an issue where pgAgent job schedule dialog is not opening for edit.
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ import ObjectNodeProperties from '../../../misc/properties/ObjectNodeProperties'
|
|||
import ErrorBoundary from '../../../static/js/helpers/ErrorBoundary';
|
||||
import toPx from '../../../static/js/to_px';
|
||||
import usePreferences from '../../../preferences/static/js/store';
|
||||
import { evalFunc } from '../../../static/js/utils';
|
||||
|
||||
define('pgadmin.browser.node', [
|
||||
'sources/gettext', 'sources/pgadmin',
|
||||
|
|
@ -772,7 +773,7 @@ define('pgadmin.browser.node', [
|
|||
id: panelId,
|
||||
title: panelTitle,
|
||||
manualClose: true,
|
||||
icon: `dialog-node-icon ${this.node_image?.(dialogProps.itemNodeData) ?? ('icon-' + this.type)}`,
|
||||
icon: `dialog-node-icon ${evalFunc(this, this.node_image, dialogProps.itemNodeData) ?? ('icon-' + this.type)}`,
|
||||
content: (
|
||||
<ErrorBoundary>
|
||||
<ObjectNodeProperties
|
||||
|
|
|
|||
Loading…
Reference in New Issue