From 9f0b09be52396a4e5b01f62810364a9b41314429 Mon Sep 17 00:00:00 2001 From: Hayden <64056131+hay-kot@users.noreply.github.com> Date: Sat, 31 Dec 2022 11:44:15 -0900 Subject: [PATCH] remove date from cards --- frontend/components/Item/Card.vue | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/frontend/components/Item/Card.vue b/frontend/components/Item/Card.vue index a060bc8..5357c9e 100644 --- a/frontend/components/Item/Card.vue +++ b/frontend/components/Item/Card.vue @@ -13,16 +13,13 @@ -
+
-
+
-
- -
@@ -50,10 +47,6 @@ return props.item.labels.slice(0, 3) || []; }); - const datetime = computed(() => { - return "Created " + fmtDate(props.item.createdAt, "human"); - }); - const props = defineProps({ item: { type: Object as () => ItemOut | ItemSummary,