mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-02 14:16:39 +01:00
Fix muted="false" means still muted 🤦♂️🤦♂️🤦♂️
This commit is contained in:
parent
ffbae70178
commit
7376cb1e99
1 changed files with 1 additions and 1 deletions
|
@ -388,7 +388,7 @@ function Media({
|
||||||
data-orientation="${orientation}"
|
data-orientation="${orientation}"
|
||||||
preload="auto"
|
preload="auto"
|
||||||
autoplay
|
autoplay
|
||||||
muted="${isGIF}"
|
${isGIF ? 'muted' : ''}
|
||||||
${isGIF ? '' : 'controls'}
|
${isGIF ? '' : 'controls'}
|
||||||
playsinline
|
playsinline
|
||||||
loop="${loopable}"
|
loop="${loopable}"
|
||||||
|
|
Loading…
Reference in a new issue