Skip to content

Commit fdd587d

Browse files
authored
fix(jira): remove unnecessary projectId dependency from manualIssueKey (#3547)
Issue keys are self-sufficient identifiers in Jira (e.g., PROJ-123). The manualIssueKey field is a text input where users type the key directly, so it should not depend on projectId/manualProjectId. This dependency caused the field to clear unnecessarily when the project selection changed.
1 parent e7b4da2 commit fdd587d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/sim/blocks/blocks/jira.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ export const JiraBlock: BlockConfig<JiraResponse> = {
165165
type: 'short-input',
166166
canonicalParamId: 'issueKey',
167167
placeholder: 'Enter Jira issue key',
168-
dependsOn: ['credential', 'domain', 'projectId', 'manualProjectId'],
168+
dependsOn: ['credential', 'domain'],
169169
condition: {
170170
field: 'operation',
171171
value: [

0 commit comments

Comments
 (0)