Skip to content

Commit

Permalink
new release for app/
Browse files Browse the repository at this point in the history
  • Loading branch information
cecoeco committed Sep 29, 2024
1 parent cb7f379 commit 1f31252
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PRISMA"
uuid = "7b67a8d2-c4f5-4933-b91c-0fc427024db5"
authors = ["Ceco Elijah Maples <[email protected]>", "PRISMA.jl Contributors"]
version = "0.0.7"
version = "0.0.8"

[deps]
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
Expand Down
4 changes: 2 additions & 2 deletions src/flow_diagram.jl
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ fd = flow_diagram(df)
display(fd)
# save the flow diagram
flow_diagram_save("flow_diagram.png", fd)
flow_diagram_save("flow_diagram.svg", fd)
```
"""
function flow_diagram(
Expand Down Expand Up @@ -435,7 +435,7 @@ function flow_diagram(
if !(row.box_num in excluded_boxes)
dot *= """
$(row.box_num) [
$(row.box_num in SIDE_BOXES ? "label=\"$(row.box_num)\"," : "label=<$(row.box_text)>,")
label=<$(row.box_text)>,
shape=box,
style="filled,$border_style",
fillcolor="$box_color",
Expand Down

0 comments on commit 1f31252

Please sign in to comment.