diff --git a/src/frontend/invitation/invitation-stats.vue b/src/frontend/invitation/invitation-stats.vue index cbe9e70d..0b44a6e0 100644 --- a/src/frontend/invitation/invitation-stats.vue +++ b/src/frontend/invitation/invitation-stats.vue @@ -9,10 +9,13 @@ import type { InvitationStats as InvitationStatsType } from '../../types'; const props = defineProps(); const primary = computed(() => { - return [{ label: 'Impressions', value: props.impressions.toString() }]; + return [{ label: 'Analytics', value: '' }]; }); const secondary = computed(() => { - return [{ label: 'Clicks throughs', value: props.clicks.toString() }]; + return [ + { label: 'Impressions', value: props.impressions.toString() }, + { label: 'Click throughs', value: props.clicks.toString() }, + ]; });