fix mm^2 issue
This commit is contained in:
@@ -11,13 +11,13 @@
|
|||||||
<table style="background: #f1f1f1">
|
<table style="background: #f1f1f1">
|
||||||
<tr>
|
<tr>
|
||||||
<th class="legend-heading">Index</th>
|
<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>
|
<th class="legend-heading">Copy</th>
|
||||||
</tr>
|
</tr>
|
||||||
{% for item in dtable %}
|
{% for item in dtable %}
|
||||||
<tr>
|
<tr>
|
||||||
<td class="legend-cell">{{ item.0 }}</td>
|
<td class="legend-cell">{{ item.0 }}</td>
|
||||||
<td class="legend-cell">{{ item.1 }} mm²</td>
|
<td class="legend-cell">{{ item.1 }}</td>
|
||||||
<td>
|
<td>
|
||||||
<button onclick="() => navigator.clipboard.writeText('{{ item.1 }}')">Copy</button>
|
<button onclick="() => navigator.clipboard.writeText('{{ item.1 }}')">Copy</button>
|
||||||
</td>
|
</td>
|
||||||
|
|||||||
Reference in New Issue
Block a user