mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-03-25 23:24:44 +01:00
Need to show media attachments even when status size=s
This is because status is optional when there are media attachments So if the status is empty, there's nothing to show at all lololol
This commit is contained in:
parent
0ecc8b0bd7
commit
f7571f6df1
1 changed files with 1 additions and 1 deletions
|
@ -727,7 +727,7 @@ function Status({
|
|||
content
|
||||
</button>
|
||||
)}
|
||||
{!!mediaAttachments.length && size !== 's' && (
|
||||
{!!mediaAttachments.length && (
|
||||
<div class="media-container">
|
||||
{mediaAttachments.map((media, i) => (
|
||||
<Media
|
||||
|
|
Loading…
Add table
Reference in a new issue