Skip to content

Commit

Permalink
Go back to double quotes (#2500)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Tideman authored Jan 13, 2025
1 parent 710665e commit 2551ee4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/services/workflow-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -710,9 +710,9 @@ export async function fetchAllRootWorkflows(
rootWorkflowId: string,
rootRunId?: string,
): Promise<RootNode | undefined> {
let query = `RootWorkflowId = '${rootWorkflowId}'`;
let query = `RootWorkflowId = "${rootWorkflowId}"`;
if (rootRunId) {
query += ` AND RootRunId = '${rootRunId}'`;
query += ` AND RootRunId = "${rootRunId}"`;
}

const root = await fetchWorkflow({
Expand Down

0 comments on commit 2551ee4

Please sign in to comment.