We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69a23e4 commit 9ea2386Copy full SHA for 9ea2386
projects/stream-chat-angular/src/lib/attachment-list/attachment-list.component.html
@@ -83,13 +83,14 @@
83
</button>
84
</ng-container>
85
</div>
86
- <video
87
- class="str-chat__video-angular"
88
- *ngIf="isVideo(attachment)"
89
- controls
90
- data-testclass="video-attachment"
91
- [src]="attachment.asset_url"
92
- ></video>
+ <div class="str-chat__player-wrapper" *ngIf="isVideo(attachment)">
+ <video
+ class="str-chat__video-angular"
+ controls
+ data-testclass="video-attachment"
+ [src]="attachment.asset_url"
+ ></video>
93
+ </div>
94
<div
95
*ngIf="isFile(attachment)"
96
class="
0 commit comments