mirror of
https://github.com/danbulant/Portfolio
synced 2026-06-06 00:01:41 +00:00
fix: types
This commit is contained in:
parent
c275912786
commit
113ac0d95e
1 changed files with 2 additions and 4 deletions
|
|
@ -1,13 +1,11 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import backgroundImage from '$lib/assets/background.jpg';
|
|
||||||
|
|
||||||
import { apiFetchCandidate, apiListCandidates, apiResetCandidatePassword } from '$lib/@api/admin';
|
import { apiFetchCandidate, apiListCandidates, apiResetCandidatePassword } from '$lib/@api/admin';
|
||||||
import Home from '$lib/components/icons/Home.svelte';
|
import Home from '$lib/components/icons/Home.svelte';
|
||||||
import TextField from '$lib/components/textfield/TextField.svelte';
|
import TextField from '$lib/components/textfield/TextField.svelte';
|
||||||
import type { CandidateData, CandidatePreview } from '$lib/stores/candidate';
|
import type { CandidateData, CandidatePreview } from '$lib/stores/candidate';
|
||||||
import ListElement from '$lib/components/dashboard/ListElement.svelte';
|
|
||||||
import CandidateDetails from '$lib/components/dashboard/CandidateDetails.svelte';
|
import CandidateDetails from '$lib/components/dashboard/CandidateDetails.svelte';
|
||||||
import { onMount } from 'svelte';
|
import { onMount } from 'svelte';
|
||||||
|
import type { PageData } from '../$types';
|
||||||
|
|
||||||
let candidates: [CandidatePreview] = [{}];
|
let candidates: [CandidatePreview] = [{}];
|
||||||
let candidateDetails: { [id: number]: CandidateData } = {};
|
let candidateDetails: { [id: number]: CandidateData } = {};
|
||||||
|
|
@ -76,7 +74,7 @@
|
||||||
<div class="overflow-x-auto sm:-mx-6 lg:-mx-8">
|
<div class="overflow-x-auto sm:-mx-6 lg:-mx-8">
|
||||||
<div class="inline-block min-w-full py-4 sm:px-6 lg:px-8">
|
<div class="inline-block min-w-full py-4 sm:px-6 lg:px-8">
|
||||||
<div class="overflow-hidden">
|
<div class="overflow-hidden">
|
||||||
<table class="min-w-full rounded-md border-2 border-[#dfe0e9] text-center">
|
<table class="min-w-full rounded-md border-2 border-[#dfe0e9] text-center rounded-lg">
|
||||||
<thead class="bg-[#f6f4f4] ">
|
<thead class="bg-[#f6f4f4] ">
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col" class="px-6 py-4 text-sm font-medium text-gray-900">
|
<th scope="col" class="px-6 py-4 text-sm font-medium text-gray-900">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue