Skip to content

Commit a6e3c92

Browse files
authored
fix(jira): fixed incorrect dependsOn for jira project/issue subblcks (#2167)
1 parent 9670d96 commit a6e3c92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/sim/blocks/blocks/jira.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,15 +183,15 @@ export const JiraBlock: BlockConfig<JiraResponse> = {
183183
type: 'short-input',
184184
required: true,
185185
placeholder: 'Enter new summary for the issue',
186-
dependsOn: ['issueKey'],
186+
dependsOn: ['projectId'],
187187
condition: { field: 'operation', value: ['update', 'write'] },
188188
},
189189
{
190190
id: 'description',
191191
title: 'New Description',
192192
type: 'long-input',
193193
placeholder: 'Enter new description for the issue',
194-
dependsOn: ['issueKey'],
194+
dependsOn: ['projectId'],
195195
condition: { field: 'operation', value: ['update', 'write'] },
196196
},
197197
// Delete Issue fields

0 commit comments

Comments
 (0)