Improve preview loading (#10406)

* Use skeleton for gif loading

* cache gifs as well

* Show skeleton when switching previews

* Fix touch controls for mobile

* Fix android mobile scrub logic

* Cleanup
This commit is contained in:
Nicolas Mowen
2024-03-12 17:19:16 -06:00
committed by GitHub
parent 92255f771b
commit 09cf54c731
5 changed files with 55 additions and 30 deletions

View File

@@ -117,7 +117,7 @@ export default function LiveDashboardView({
{events && events.length > 0 && (
<ScrollArea>
<TooltipProvider>
<div className="flex">
<div className="flex gap-4 items-center">
{events.map((event) => {
return <AnimatedEventThumbnail key={event.id} event={event} />;
})}