Skip to content

Commit

Permalink
fix: updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
xmlking committed Mar 21, 2024
1 parent 42174d4 commit 49c6905
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions apps/console-fb/src/lib/components/table/DataTable.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ See: https://svelte-headless-table.bryanmylee.com/docs/api/create-view-model
-->
<script lang="ts">
import { Button, ButtonGroup, Select } from 'flowbite-svelte';
import { ChevronDownSolid, ChevronUpSolid } from 'flowbite-svelte-icons';
import { CaretDownSolid, CaretUpSolid } from 'flowbite-svelte-icons';
import type { TableViewModel } from 'svelte-headless-table';
import { Render, Subscribe } from 'svelte-headless-table';
Expand Down Expand Up @@ -79,9 +79,9 @@ See: https://svelte-headless-table.bryanmylee.com/docs/api/create-view-model
<div class="flex items-center">
<Render of={cell.render()} />
{#if props.sort.order === 'asc'}
<ChevronDownSolid size="sm" class="ml-1" />
<CaretDownSolid size="sm" class="ml-1" />
{:else if props.sort.order === 'desc'}
<ChevronUpSolid size="sm" class="ml-1" />
<CaretUpSolid size="sm" class="ml-1" />
{/if}
{#if props.resize && !props.resize.disabled}
<div class="resizer" use:props.resize.drag />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts">
import { XCircleOutline } from 'flowbite-svelte-icons';
import { CloseCircleOutline } from 'flowbite-svelte-icons';
import { createEventDispatcher } from 'svelte';
import type { CustomEventProps } from '$lib/components/DeleteButton.svelte';
Expand All @@ -13,7 +13,7 @@
</script>

<button on:click={handleDeleteButton}>
<XCircleOutline color="red" />
<CloseCircleOutline color="red" />
</button>

<!-- For Debugging -->
Expand Down

0 comments on commit 49c6905

Please sign in to comment.