We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c183619 commit b181808Copy full SHA for b181808
.gitignore
@@ -4,4 +4,5 @@ dist/
4
.vscode
5
.DS_Store
6
.idea
7
-server/idl
+server/idl
8
+package-lock.json
client/main.js
@@ -166,7 +166,7 @@ const routeOpts = {
166
eventId: Number(query.eventId) || undefined,
167
format: query.format || 'grid',
168
runId: params.runId,
169
- showGraph: query.showGraph === true,
+ showGraph: Boolean(query.showGraph) === true,
170
workflowId: params.workflowId,
171
}),
172
},
0 commit comments