Misc fixes (#14064)

* Add loading indicator when explore view is revalidating

* Portal tooltip in object lifecycle pane

* Better config file handling

* Only manually set aspect ratio when using alert videos
This commit is contained in:
Josh Hawkins
2024-09-30 08:32:54 -05:00
committed by GitHub
parent 775a3a1c22
commit 3688a3bc67
5 changed files with 37 additions and 9 deletions

View File

@@ -109,7 +109,7 @@ export function AnimatedEventCard({
<div
className="relative h-24 4k:h-32"
style={{
aspectRatio: aspectRatio,
aspectRatio: alertVideos ? aspectRatio : undefined,
}}
onMouseEnter={isDesktop ? () => setIsHovered(true) : undefined}
onMouseLeave={isDesktop ? () => setIsHovered(false) : undefined}