fix mm^2 issue

master
michael 2022-11-03 17:36:22 -07:00
parent 481de4dfb1
commit dcf78bb88d
1 changed files with 2 additions and 2 deletions

View File

@ -11,13 +11,13 @@
<table style="background: #f1f1f1">
<tr>
<th class="legend-heading">Index</th>
<th class="legend-heading">Area</th>
<th class="legend-heading">Area (mm²)</th>
<th class="legend-heading">Copy</th>
</tr>
{% for item in dtable %}
<tr>
<td class="legend-cell">{{ item.0 }}</td>
<td class="legend-cell">{{ item.1 }} mm²</td>
<td class="legend-cell">{{ item.1 }}</td>
<td>
<button onclick="() => navigator.clipboard.writeText('{{ item.1 }}')">Copy</button>
</td>