mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed an issue where pgAgent job schedule dialog is not opening for edit. #7070
This commit is contained in:
@@ -30,5 +30,6 @@ Housekeeping
|
|||||||
Bug fixes
|
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 #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 ErrorBoundary from '../../../static/js/helpers/ErrorBoundary';
|
||||||
import toPx from '../../../static/js/to_px';
|
import toPx from '../../../static/js/to_px';
|
||||||
import usePreferences from '../../../preferences/static/js/store';
|
import usePreferences from '../../../preferences/static/js/store';
|
||||||
|
import { evalFunc } from '../../../static/js/utils';
|
||||||
|
|
||||||
define('pgadmin.browser.node', [
|
define('pgadmin.browser.node', [
|
||||||
'sources/gettext', 'sources/pgadmin',
|
'sources/gettext', 'sources/pgadmin',
|
||||||
@@ -772,7 +773,7 @@ define('pgadmin.browser.node', [
|
|||||||
id: panelId,
|
id: panelId,
|
||||||
title: panelTitle,
|
title: panelTitle,
|
||||||
manualClose: true,
|
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: (
|
content: (
|
||||||
<ErrorBoundary>
|
<ErrorBoundary>
|
||||||
<ObjectNodeProperties
|
<ObjectNodeProperties
|
||||||
|
|||||||
Reference in New Issue
Block a user