Skip to content

Commit

Permalink
fix: Omit exchange item element labels
Browse files Browse the repository at this point in the history
Because of elkjs limitations edge labels cannot be displayed properly at this point without sacrificing the desired layout.
Edge labels will be omitted completely as to not create confusion with them showing up on the top left corner.
  • Loading branch information
huyenngn committed Aug 2, 2024
1 parent c7b15ed commit 563d5e5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ def process(self) -> None:
layoutOptions=DEFAULT_EDGE_LAYOUT_OPTIONS,
sources=[item.uuid],
targets=[elem.abstract_type.uuid],
labels=makers.make_label(elem.name),
# Add back labels once edge label issue is fixed
# labels=makers.make_label(elem.name),
)
)
for cls in self.classes.values():
Expand Down

0 comments on commit 563d5e5

Please sign in to comment.