Skip to content

Commit b181808

Browse files
authored
Fix/show graph bug (#201)
* fixed bug where showGraph button didnt show graph. * add line ending for gitignore
1 parent c183619 commit b181808

File tree

3 files changed

+3
-13735
lines changed

3 files changed

+3
-13735
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ dist/
44
.vscode
55
.DS_Store
66
.idea
7-
server/idl
7+
server/idl
8+
package-lock.json

client/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ const routeOpts = {
166166
eventId: Number(query.eventId) || undefined,
167167
format: query.format || 'grid',
168168
runId: params.runId,
169-
showGraph: query.showGraph === true,
169+
showGraph: Boolean(query.showGraph) === true,
170170
workflowId: params.workflowId,
171171
}),
172172
},

0 commit comments

Comments
 (0)