mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-07-21 07:01:19 -04:00
properly merge multiple class names
This commit is contained in:
@@ -27,9 +27,9 @@ const Video = ({ webm, mp4, thumbnail, subs, autoplay }: Props) => {
|
||||
attributes: {
|
||||
controlsList: "nodownload",
|
||||
preload: "metadata",
|
||||
autoPlay: autoplay,
|
||||
muted: autoplay,
|
||||
loop: autoplay,
|
||||
autoPlay: !!autoplay,
|
||||
muted: !!autoplay,
|
||||
loop: !!autoplay,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
Reference in New Issue
Block a user