Add graph bar on wish tally list
parent
b792a204fa
commit
fbb83ed4ba
|
@ -549,6 +549,14 @@
|
|||
{numberFormat.format((item.count / legendary.total) * 100)}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="4">
|
||||
<span
|
||||
class="absolute bg-legendary-from block"
|
||||
style="height: 1px; margin-top: 1px; width: {(item.count / legendary.total) * 100}%;"
|
||||
/>
|
||||
</td>
|
||||
</tr>
|
||||
{/each}
|
||||
</table>
|
||||
</div>
|
||||
|
@ -587,6 +595,14 @@
|
|||
{numberFormat.format((item.count / rare.total) * 100)}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="4">
|
||||
<span
|
||||
class="absolute bg-rare-from block"
|
||||
style="height: 1px; margin-top: 1px; width: {(item.count / rare.total) * 100}%;"
|
||||
/>
|
||||
</td>
|
||||
</tr>
|
||||
{/each}
|
||||
</table>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue