Merge pull request #47 from ibs0d/claude/fix-video-stretch-history-ansQF

Claude/fix video stretch history ans qf
This commit is contained in:
ibs0d 2026-03-14 10:31:50 +11:00 committed by GitHub
commit 54bfced9ba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -849,7 +849,14 @@ function DetectionReview({
} }
className="review-item relative rounded-lg" className="review-item relative rounded-lg"
> >
<div className="aspect-video overflow-hidden rounded-lg"> <div
className="overflow-hidden rounded-lg"
style={{
aspectRatio: config?.cameras[value.camera]
? `${config.cameras[value.camera].detect.width}/${config.cameras[value.camera].detect.height}`
: "16/9",
}}
>
<PreviewThumbnailPlayer <PreviewThumbnailPlayer
review={value} review={value}
allPreviews={relevantPreviews} allPreviews={relevantPreviews}