fix(components/media): Handling of grouped videos (#1409)
* fix(components/media): Handling of grouped videos Fixes #1404 * fix(status/media): Wrap in a div
This commit is contained in:
parent
a895abe2c9
commit
acb134e518
1 changed files with 13 additions and 11 deletions
|
@ -1,6 +1,7 @@
|
||||||
{#if type === 'video' || type === 'audio'}
|
{#if type === 'video' || type === 'audio'}
|
||||||
{#if blurhash}
|
{#if blurhash}
|
||||||
{#if type === 'video'}
|
{#if type === 'video'}
|
||||||
|
<div>
|
||||||
<LazyImage
|
<LazyImage
|
||||||
alt={description}
|
alt={description}
|
||||||
title={description}
|
title={description}
|
||||||
|
@ -12,6 +13,7 @@
|
||||||
background="var(--loading-bg)"
|
background="var(--loading-bg)"
|
||||||
{focus}
|
{focus}
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
{:else}
|
{:else}
|
||||||
<button id={elementId}
|
<button id={elementId}
|
||||||
|
|
Loading…
Add table
Reference in a new issue