fix: 🔒 don't show notes with CW on welcome screen

Closes #9849
This commit is contained in:
ThatOneCalculator 2023-04-13 19:46:52 -07:00
parent 4125e3704e
commit 25f45f8b4b
No known key found for this signature in database
GPG key ID: 8703CACD01000000
2 changed files with 2 additions and 1 deletions

View file

@ -38,6 +38,7 @@
class="logo"
v-if="meta.logoImageUrl"
:src="meta.logoImageUrl"
alt="logo"
/>
<span v-else class="text">{{ instanceName }}</span>
</h1>

View file

@ -6,7 +6,7 @@
v-bind:class="{ scroll: isScrolling }"
>
<div v-for="note in notes" class="note">
<div class="content _panel">
<div class="content _panel" v-if="note.cw == null">
<div class="body">
<MkA
v-if="note.replyId"