From 0501b98a2b785b63c8a6c0c6a9065e5fd5ab6a0a Mon Sep 17 00:00:00 2001 From: "Lu[ke] Wilson" Date: Wed, 28 Dec 2022 12:30:29 +0000 Subject: [PATCH] fix: change all DMs to primary colour (#602) --- components/status/StatusContent.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/components/status/StatusContent.vue b/components/status/StatusContent.vue index 98f15c2e..2006fab7 100644 --- a/components/status/StatusContent.vue +++ b/components/status/StatusContent.vue @@ -7,7 +7,6 @@ const { status, context } = defineProps<{ }>() const isDM = $computed(() => status.visibility === 'direct') -const isSelf = $computed(() => status.account.id === currentUser.value?.account.id) const isDetails = $computed(() => context === 'details') // Content Filter logic @@ -25,8 +24,7 @@ const isFiltered = $computed(() => filterPhrase && (context && context !== 'deta space-y-3 :class="{ 'pt2 pb0.5 px3.5 br2 border-1 rounded-3 rounded-tl-none': isDM, - 'bg-fade border-primary-light': isDM && !isSelf, - 'bg-code border-base': isDM && isSelf, + 'bg-fade border-primary-light': isDM, }" >