diff --git a/components/status/StatusCard.vue b/components/status/StatusCard.vue index 5d6320c9..f9259bec 100644 --- a/components/status/StatusCard.vue +++ b/components/status/StatusCard.vue @@ -9,6 +9,7 @@ const props = withDefaults( hover?: boolean faded?: boolean showReplyTo?: boolean + connectReply?: boolean }>(), { actions: true, showReplyTo: true }, ) @@ -60,6 +61,7 @@ const avatarOnAvatar = $(computedEager(() => useFeatureFlags().experimentalAvata const showRebloggedByAvatarOnAvatar = $computed(() => rebloggedBy && avatarOnAvatar && rebloggedBy.id !== status.account.id) const isDM = $computed(() => status.visibility === 'direct') +const isSelf = $computed(() => status.account.id === currentUser.value?.account.id)