Skip to content

Commit f879c0b

Browse files
Copilothotlong
andcommitted
Fix CI error: correct flow reference in CRM example action
Action 'convert_lead' referenced 'lead_conversion_flow' but the flow is named 'lead_conversion'. Updated target to match the actual flow name. Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
1 parent 6b5f218 commit f879c0b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/app-crm/src/actions/lead.actions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const ConvertLeadAction: Action = {
88
label: 'Convert Lead',
99
icon: 'arrow-right-circle',
1010
type: 'flow',
11-
target: 'lead_conversion_flow',
11+
target: 'lead_conversion',
1212
locations: ['record_header', 'list_item'],
1313
visible: 'status = "qualified" AND is_converted = false',
1414
confirmText: 'Are you sure you want to convert this lead?',

0 commit comments

Comments
 (0)