File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
renku/core/commands/view_model Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ This is a bugfix release fixing an issue with cycle detection in workflows.
26
26
Bug Fixes
27
27
~~~~~~~~~
28
28
29
- - **core: ** prevent creating cycles when creating/executing workflows.
29
+ - **core: ** prevent creating cycles when creating/executing workflows. Fix color in ` workflow visualize `.
30
30
(`#2785 <https://github.com/SwissDataScienceCenter/renku-python/pull/2785 >`__)
31
31
32
32
`1.1.3 <https://github.com/SwissDataScienceCenter/renku-python/compare/v1.1.2...v1.1.3 >`__ (2022-03-25)
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ def _add_edges_to_canvas(
146
146
147
147
colors = {e .color for e in intersecting_edges }
148
148
149
- if len (colors ) < len (EdgeShape .EDGE_COLORS ):
149
+ if len (colors ) < len (EdgeShape .COLORS ):
150
150
while edge_color in colors :
151
151
edge_color = EdgeShape .next_color ()
152
152
for e in new_edges :
You can’t perform that action at this time.
0 commit comments