fix(frontend): allow only plain MFM on channel description

This commit is contained in:
zyoshoka 2024-09-29 19:09:49 +09:00
parent d432a26d5b
commit 1003caecd9
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</div> </div>
</div> </div>
<article v-if="channel.description"> <article v-if="channel.description">
<Mfm :text="channel.description.length > 85 ? channel.description.slice(0, 85) + '…' : channel.description" :isNote="false"/> <Mfm :text="channel.description.length > 85 ? channel.description.slice(0, 85) + '…' : channel.description" :plain="true"/>
</article> </article>
<footer> <footer>
<span v-if="channel.lastNotedAt"> <span v-if="channel.lastNotedAt">