From 1ae349bc7315bc31c0e690b011f22a472f2d07cc Mon Sep 17 00:00:00 2001 From: Grady Ward Date: Tue, 23 Jan 2024 13:31:48 -0700 Subject: [PATCH] WIP --- frontend/components/DownloadButton.vue | 2 +- frontend/components/portfolio/ListView.vue | 166 +++++++++++++-------- frontend/components/standard/Debug.vue | 16 +- frontend/lang/en.json | 3 +- 4 files changed, 123 insertions(+), 64 deletions(-) diff --git a/frontend/components/DownloadButton.vue b/frontend/components/DownloadButton.vue index d286b1d..026c962 100644 --- a/frontend/components/DownloadButton.vue +++ b/frontend/components/DownloadButton.vue @@ -5,7 +5,7 @@ const { t } = useI18n() interface Props { value: string - cta: string + cta?: string | undefined fileName: string } const props = defineProps() diff --git a/frontend/components/portfolio/ListView.vue b/frontend/components/portfolio/ListView.vue index 41c0592..8f6cf6d 100644 --- a/frontend/components/portfolio/ListView.vue +++ b/frontend/components/portfolio/ListView.vue @@ -1,7 +1,8 @@ diff --git a/frontend/components/standard/Debug.vue b/frontend/components/standard/Debug.vue index de113ba..828b317 100644 --- a/frontend/components/standard/Debug.vue +++ b/frontend/components/standard/Debug.vue @@ -8,6 +8,7 @@ const tt = (s: string) => t(`${prefix}.${s}`) interface Props { label?: string always?: boolean + noAccordion?: boolean value: unknown } const props = withDefaults(defineProps(), { always: false, label: undefined }) @@ -31,7 +32,7 @@ function createCircularReplacer (): (this: any, key: string, value: any) => any