mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
Limit size of player in events view (#3288)
* Set max width * Set data-options so videojs accepts size changing * Add comment to explain exmpty data-setup value * Clarify comment
This commit is contained in:
parent
bc078fcc88
commit
da637d3c8f
@ -93,7 +93,8 @@ export default function VideoPlayer({ children, options, seekOptions = {}, onRea
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div data-vjs-player>
|
<div data-vjs-player>
|
||||||
<video ref={playerRef} className="small-player video-js vjs-default-skin" controls playsinline />
|
{/* Setting an empty data-setup is required to override the default values and allow video to be fit the size of its parent */}
|
||||||
|
<video ref={playerRef} className="small-player video-js vjs-default-skin" data-setup="{}" controls playsinline />
|
||||||
{children}
|
{children}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
@ -494,7 +494,7 @@ export default function Events({ path, ...props }) {
|
|||||||
</div>
|
</div>
|
||||||
{viewEvent !== event.id ? null : (
|
{viewEvent !== event.id ? null : (
|
||||||
<div className="space-y-4">
|
<div className="space-y-4">
|
||||||
<div className="mx-auto">
|
<div className="mx-auto max-w-7xl">
|
||||||
{event.has_clip ? (
|
{event.has_clip ? (
|
||||||
<>
|
<>
|
||||||
<Heading size="lg">Clip</Heading>
|
<Heading size="lg">Clip</Heading>
|
||||||
|
Loading…
Reference in New Issue
Block a user