Skip to content

Commit 3b6448f

Browse files
committed
fix(ui): missed execution → run renames in search suggestions and error fallback
1 parent d927db1 commit 3b6448f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/sim/app/workspace/[workspaceId]/w/[workflowId]/utils/workflow-execution-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ export async function executeWorkflowWithFullLogging(
652652

653653
if (!response.ok) {
654654
const error = await response.json()
655-
const errorMessage = error.error || 'Workflow execution failed'
655+
const errorMessage = error.error || 'Workflow run failed'
656656
addHttpErrorConsoleEntry(addConsole, {
657657
workflowId: wfId,
658658
executionId,

apps/sim/lib/logs/search-suggestions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ export class SearchSuggestions {
604604
id: `trigger-match-${trigger.value}`,
605605
value: `trigger:${trigger.value}`,
606606
label: trigger.label,
607-
description: `${trigger.label}-triggered executions`,
607+
description: `${trigger.label}-triggered runs`,
608608
category: 'trigger' as const,
609609
color: trigger.color,
610610
}))

0 commit comments

Comments
 (0)