Skip to content

Commit 8e9a9d7

Browse files
committed
2867 - SF
1 parent b3709eb commit 8e9a9d7

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

client/src/pages/platform/workflow-editor/components/properties/Property.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ import PropertyJsonSchemaBuilder from '@/pages/platform/workflow-editor/componen
1717
import PropertyMentionsInput from '@/pages/platform/workflow-editor/components/properties/components/property-mentions-input/PropertyMentionsInput';
1818
import useProperty from '@/pages/platform/workflow-editor/components/properties/hooks/useProperty';
1919
import getInputHTMLType from '@/pages/platform/workflow-editor/utils/getInputHTMLType';
20-
import {getTask} from '@/pages/platform/workflow-editor/utils/getTask';
21-
import saveProperty from '@/pages/platform/workflow-editor/utils/saveProperty';
2220
import {
2321
GetClusterElementParameterDisplayConditions200Response,
2422
Option,

client/src/pages/platform/workflow-editor/components/properties/components/property-code-editor/PropertyCodeEditorSheet.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const PropertyCodeEditorSheet = ({
5757

5858
const currentWorkflowTask = getTask({
5959
tasks: workflow.tasks || [],
60-
workflowNodeName: workflowNodeName,
60+
workflowNodeName,
6161
});
6262

6363
const handleRunClick = () => {

client/src/pages/platform/workflow-editor/components/properties/components/property-code-editor/PropertyCodeEditorSheetRightPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const PropertyCodeEditorSheetRightPanel = ({
1616
}: PropertyCodeEditorSheetConnectionsSheetRightPanelProps) => {
1717
const currentTask = getTask({
1818
tasks: workflow.tasks || [],
19-
workflowNodeName: workflowNodeName,
19+
workflowNodeName,
2020
});
2121

2222
return (

0 commit comments

Comments
 (0)