ui fix
This commit is contained in:
parent
2ba4ddb207
commit
5245853453
@ -4,6 +4,7 @@
|
|||||||
import InfiniteLoading from '$lib/components/InfiniteLoading.svelte';
|
import InfiniteLoading from '$lib/components/InfiniteLoading.svelte';
|
||||||
import { onMount } from 'svelte';
|
import { onMount } from 'svelte';
|
||||||
import UpgradeToPro from '$lib/components/UpgradeToPro.svelte';
|
import UpgradeToPro from '$lib/components/UpgradeToPro.svelte';
|
||||||
|
import { abbreviateNumber } from '$lib/utils.js';
|
||||||
|
|
||||||
|
|
||||||
export let data;
|
export let data;
|
||||||
@ -335,6 +336,9 @@ function getLastDate(dateString) {
|
|||||||
<th class="text-end bg-[#0F0F0F] text-white text-sm font-semibold">
|
<th class="text-end bg-[#0F0F0F] text-white text-sm font-semibold">
|
||||||
Price
|
Price
|
||||||
</th>
|
</th>
|
||||||
|
<th class="text-end bg-[#0F0F0F] text-white text-sm font-semibold">
|
||||||
|
Amount
|
||||||
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -374,6 +378,10 @@ function getLastDate(dateString) {
|
|||||||
${item?.price}
|
${item?.price}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
|
<td class="text-end text-sm font-medium text-white">
|
||||||
|
${abbreviateNumber(item?.price*item?.volume)}
|
||||||
|
</td>
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
{/each}
|
{/each}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user