Skip to content

Commit

Permalink
Fix/show graph bug (#201)
Browse files Browse the repository at this point in the history
* fixed bug where showGraph button didnt show graph.

* add line ending for gitignore
  • Loading branch information
just-at-uber authored Oct 13, 2020
1 parent c183619 commit b181808
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 13,735 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ dist/
.vscode
.DS_Store
.idea
server/idl
server/idl
package-lock.json
2 changes: 1 addition & 1 deletion client/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ const routeOpts = {
eventId: Number(query.eventId) || undefined,
format: query.format || 'grid',
runId: params.runId,
showGraph: query.showGraph === true,
showGraph: Boolean(query.showGraph) === true,
workflowId: params.workflowId,
}),
},
Expand Down
Loading

0 comments on commit b181808

Please sign in to comment.