diff --git a/web/src/routes/Event.jsx b/web/src/routes/Event.jsx index 36ebe1e8e..dcc03afb9 100644 --- a/web/src/routes/Event.jsx +++ b/web/src/routes/Event.jsx @@ -64,41 +64,51 @@ export default function Event({ eventId, close, scrollRef }) { if (status !== FetchStatus.LOADED) { return ; } + + const DownloadButtonGroup = ({ className }) => ( + + + + + ); + const DeleteButtonGroup = ({ className }) => ( +
+ + +
+ ); const startime = new Date(data.start_time * 1000); const endtime = new Date(data.end_time * 1000); return (
-
- - -
-
- - -
+ {showDialog ? ( ) : null}
+
{data.has_clip ? ( @@ -186,6 +197,10 @@ export default function Event({ eventId, close, scrollRef }) { )}
+
+ + +
); }