mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 14:31:26 +00:00
Update PostComponent.vue, fix MomentUI caption
This commit is contained in:
parent
c076e9a7b6
commit
aa6d8c8f85
1 changed files with 1 additions and 1 deletions
|
@ -300,7 +300,7 @@
|
|||
<div class="media align-items-center mt-3">
|
||||
<div class="media-body">
|
||||
<h2 class="font-weight-bold">
|
||||
{{status.content.length < 100 ? status.content.slice(0,100) : 'Untitled Post'}}
|
||||
{{status.content.length > 100 ? status.content.slice(0,100) : 'Untitled Post'}}
|
||||
</h2>
|
||||
<p class="lead mb-0">
|
||||
by <a :href="statusProfileUrl">{{statusUsername}}</a>
|
||||
|
|
Loading…
Reference in a new issue