Skip to content

Commit

Permalink
fix: change paths
Browse files Browse the repository at this point in the history
  • Loading branch information
t03i committed Oct 22, 2024
1 parent aeb6f51 commit 3c30a8e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion frontend/src/lib/comps/Header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import { AppBar } from "@skeletonlabs/skeleton";
import { LightSwitch } from "@skeletonlabs/skeleton";
import config from "$lib/config";
import Logo from "$lib/components/Logo.svelte";
import Logo from "$lib/comps/Logo.svelte";
</script>

<AppBar
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/lib/comps/Table/DataTable.svelte
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!-- src/lib/components/ProteinDatatable.svelte -->
<!-- src/lib/comps/ProteinDatatable.svelte -->
<script lang="ts">
import { onMount } from "svelte";
import { DataHandler } from "@vincjo/datatables";
Expand All @@ -9,7 +9,7 @@
import ThBoolFilter from "./ThBoolFilter.svelte";
import Search from "./Search.svelte";
import TableFooter from "./TableFooter.svelte";
import type { TableHeader } from "$lib/components/Table";
import type { TableHeader } from "$lib/comps/Table";
import DownloadCsv from "./DownloadCSV.svelte";
export let data: any[];
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/lib/comps/Table/DownloadCSV.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import "iconify-icon";
import type { DataHandler } from "@vincjo/datatables";
import type { TableHeader } from "$lib/components/Table";
import type { TableHeader } from "$lib/comps/Table";
import config from "$lib/config";
export let data: Record<string, any>[];
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/lib/comps/Table/LoadingTable.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- src/lib/components/LoadingTable.svelte -->
<!-- src/lib/comps/LoadingTable.svelte -->
<script lang="ts">
import type { TableHeader } from "$lib/components/Table";
import type { TableHeader } from "$lib/comps/Table";
export let headers: TableHeader<any>[];
export let rows: number = 5;
Expand Down

0 comments on commit 3c30a8e

Please sign in to comment.