diff --git a/components/FeedItemCard.vue b/components/FeedItemCard.vue index a0166cf..f80adda 100644 --- a/components/FeedItemCard.vue +++ b/components/FeedItemCard.vue @@ -12,7 +12,11 @@ cols="12" class="text-h5 font-weight-md-thin scale-text text-center" > - {{ id }} + {{ + data?.curatedPublications + ? data?.curatedPublications[0].id + : props.id + }} - {{ data instanceof ArdbTransaction ? '' : data?.title }} + {{ + isCuration ? data?.title : data?.publication?.title + }}
@@ -105,63 +111,108 @@ diff --git a/pages/discover/index.vue b/pages/discover/index.vue index 8a156f8..c0d1e1a 100644 --- a/pages/discover/index.vue +++ b/pages/discover/index.vue @@ -13,7 +13,6 @@