Skip to content

Commit

Permalink
Fix additional component BOM table layout
Browse files Browse the repository at this point in the history
  • Loading branch information
formatc1702 committed Jun 7, 2023
1 parent f100a12 commit 6c8c6f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/wireviz/wv_graphviz.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ def gv_additional_component_table(component):
Tr(
[
Td(bom_bubble(subitem.bom_id)),
Td(f"{subitem.bom_qty}"),
Td(f"{subitem.qty.unit if subitem.qty.unit else 'x'}"),
Td(f"{subitem.description}"),
Td(f"{subitem.bom_qty}", align="right"),
Td(f"{subitem.qty.unit if subitem.qty.unit else 'x'}", align="left"),
Td(f"{subitem.description}", align="left"),
]
)
)
Expand Down

0 comments on commit 6c8c6f3

Please sign in to comment.