Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix(ui): missed execution → run renames in search suggestions and err…
…or fallback
  • Loading branch information
waleedlatif1 committed Apr 15, 2026
commit 3b6448f76604284215e651a8da23e7ebb44361ac
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ export async function executeWorkflowWithFullLogging(

if (!response.ok) {
const error = await response.json()
const errorMessage = error.error || 'Workflow execution failed'
const errorMessage = error.error || 'Workflow run failed'
addHttpErrorConsoleEntry(addConsole, {
workflowId: wfId,
executionId,
Expand Down
2 changes: 1 addition & 1 deletion apps/sim/lib/logs/search-suggestions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ export class SearchSuggestions {
id: `trigger-match-${trigger.value}`,
value: `trigger:${trigger.value}`,
label: trigger.label,
description: `${trigger.label}-triggered executions`,
description: `${trigger.label}-triggered runs`,
category: 'trigger' as const,
color: trigger.color,
}))
Expand Down
Loading