mirror of
https://github.com/danbulant/Portfolio
synced 2026-05-25 13:01:49 +00:00
fix: details hidden by default
This commit is contained in:
parent
75a525aa56
commit
073d7c9d50
2 changed files with 2 additions and 2 deletions
|
|
@ -12,7 +12,7 @@
|
|||
export let title: string;
|
||||
export let status: Status;
|
||||
|
||||
export let showDetails = true;
|
||||
export let showDetails = false;
|
||||
let loading = false;
|
||||
|
||||
const submitPortfolio = async () => {
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
export let data: PageData;
|
||||
|
||||
// TODO: transition
|
||||
let showDetails = true;
|
||||
let showDetails = false;
|
||||
|
||||
// @ts-ignore
|
||||
$: candidateData.set(data.candidate);
|
||||
|
|
|
|||
Loading…
Reference in a new issue