Skip to content

Commit

Permalink
Fix rendering bug for empty add.comp. table
Browse files Browse the repository at this point in the history
  • Loading branch information
formatc1702 committed Mar 23, 2021
1 parent 09d5496 commit 1f86c97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wireviz/wv_bom.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def get_additional_component_table(harness: "Harness", component: Union[Connecto
if len(rows) > 0:
tbl = pre + ''.join(rows) + post
else:
tbl = ''
tbl = None
return tbl

def get_additional_component_bom(component: Union[Connector, Cable]) -> List[BOMEntry]:
Expand Down

0 comments on commit 1f86c97

Please sign in to comment.