Skip to content

Commit 2551ee4

Browse files
authored
Go back to double quotes (#2500)
1 parent 710665e commit 2551ee4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/lib/services/workflow-service.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -710,9 +710,9 @@ export async function fetchAllRootWorkflows(
710710
rootWorkflowId: string,
711711
rootRunId?: string,
712712
): Promise<RootNode | undefined> {
713-
let query = `RootWorkflowId = '${rootWorkflowId}'`;
713+
let query = `RootWorkflowId = "${rootWorkflowId}"`;
714714
if (rootRunId) {
715-
query += ` AND RootRunId = '${rootRunId}'`;
715+
query += ` AND RootRunId = "${rootRunId}"`;
716716
}
717717

718718
const root = await fetchWorkflow({

0 commit comments

Comments
 (0)