Skip to content

Commit 099502e

Browse files
committed
fix(blocks): rename custom field values to request field values in JSM create request
1 parent 7204b73 commit 099502e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

apps/sim/blocks/blocks/jira_service_management.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,9 +220,9 @@ Return ONLY the description text - no explanations.`,
220220
},
221221
{
222222
id: 'requestFieldValues',
223-
title: 'Custom Field Values',
223+
title: 'Request Field Values',
224224
type: 'long-input',
225-
placeholder: 'JSON object of custom field values (e.g., {"customfield_10010": "value"})',
225+
placeholder: 'JSON object of field values (e.g., {"summary": "Title", "customfield_10010": "value"})',
226226
condition: { field: 'operation', value: 'create_request' },
227227
},
228228
{
@@ -788,7 +788,7 @@ Return ONLY the comment text - no explanations.`,
788788
description: 'Comma-separated account IDs for request participants',
789789
},
790790
channel: { type: 'string', description: 'Channel (e.g., portal, email)' },
791-
requestFieldValues: { type: 'string', description: 'JSON object of custom field values' },
791+
requestFieldValues: { type: 'string', description: 'JSON object of request field values' },
792792
searchQuery: { type: 'string', description: 'Filter request types by name' },
793793
groupId: { type: 'string', description: 'Filter by request type group ID' },
794794
expand: { type: 'string', description: 'Comma-separated fields to expand' },

apps/sim/tools/jsm/create_request.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export const jsmCreateRequestTool: ToolConfig<JsmCreateRequestParams, JsmCreateR
6666
required: false,
6767
visibility: 'user-or-llm',
6868
description:
69-
'Custom field values as key-value pairs (overrides summary/description if provided)',
69+
'Request field values as key-value pairs (overrides summary/description if provided)',
7070
},
7171
requestParticipants: {
7272
type: 'string',

0 commit comments

Comments
 (0)