Skip to content

Commit 9afae82

Browse files
display media content in replies (#564)
1 parent ca6e1ac commit 9afae82

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/feed/feed-post/feed-post.component.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -262,9 +262,9 @@
262262
queryParamsHandling="merge"
263263
></div>
264264

265-
<!-- Media, don't show images on comment posts. -->
265+
<!-- Media -->
266266
<div
267-
*ngIf="postContent.ImageURLs && postContent.ImageURLs[0] && !post.ParentStakeID"
267+
*ngIf="postContent.ImageURLs && postContent.ImageURLs[0]"
268268
class="feed-post__image-container"
269269
[ngClass]="{ 'mb-10px': quotedContent && showQuotedContent }"
270270
>
@@ -278,7 +278,7 @@
278278

279279
<!-- Video -->
280280
<div
281-
*ngIf="postContent.VideoURLs && postContent.VideoURLs[0] && !post.ParentStakeID"
281+
*ngIf="postContent.VideoURLs && postContent.VideoURLs[0]"
282282
class="feed-post__video-container"
283283
[ngClass]="{ 'mb-10px': quotedContent && showQuotedContent }"
284284
>

0 commit comments

Comments
 (0)