mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-23 02:16:02 +00:00
24 lines
539 B
Svelte
24 lines
539 B
Svelte
<script lang="ts">
|
|
import FontIcon from '../icons/FontIcon.svelte';
|
|
|
|
export let order;
|
|
export let orderIndex;
|
|
</script>
|
|
|
|
{#if order == 'ASC'}
|
|
<span class="icon">
|
|
<FontIcon icon="img sort-asc" />
|
|
{#if orderIndex >= 0}
|
|
<span class="color-icon-green order-index">{orderIndex + 1}</span>
|
|
{/if}
|
|
</span>
|
|
{/if}
|
|
{#if order == 'DESC'}
|
|
<span class="icon">
|
|
<FontIcon icon="img sort-desc" />
|
|
{#if orderIndex >= 0}
|
|
<span class="color-icon-green order-index">{orderIndex + 1}</span>
|
|
{/if}
|
|
</span>
|
|
{/if}
|