Fix missing quotation mark in BOM plugin
Fixes https://gitlab.com/kicad/code/kicad/-/issues/13685
This commit is contained in:
parent
9ad2e9f25d
commit
a91d2c21b8
|
@ -101,7 +101,7 @@ html = html.replace('<!--COMPCOUNT-->', "<b>Component Count:</b>" + \
|
|||
|
||||
row = "<tr><th style='width:640px'>Ref</th>" + "<th>Qnty</th>"
|
||||
row += "<th>Value</th>" + "<th>Part</th>" + "<th>Footprint</th>"
|
||||
row += "<th>Description</th>" + "<th>Vendor</th> + "<th>DNP</th></tr>"
|
||||
row += "<th>Description</th>" + "<th>Vendor</th>" + "<th>DNP</th></tr>"
|
||||
|
||||
html = html.replace('<!--TABLEROW-->', row + "<!--TABLEROW-->")
|
||||
|
||||
|
|
Loading…
Reference in New Issue