From d43cf21e42801edf7c56f9a99f0971a5e17d38d1 Mon Sep 17 00:00:00 2001 From: ElementalAlchemist Date: Tue, 19 Nov 2024 01:52:33 -0600 Subject: [PATCH] Format code --- thrimbletrimmer/src/common/video.tsx | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/thrimbletrimmer/src/common/video.tsx b/thrimbletrimmer/src/common/video.tsx index a0c0bb1..dd61acd 100644 --- a/thrimbletrimmer/src/common/video.tsx +++ b/thrimbletrimmer/src/common/video.tsx @@ -1,12 +1,4 @@ -import { - Accessor, - Component, - createEffect, - createSignal, - onMount, - Setter, - Show, -} from "solid-js"; +import { Accessor, Component, createEffect, createSignal, onMount, Setter, Show } from "solid-js"; import { DateTime } from "luxon"; import { TimeType, @@ -38,6 +30,8 @@ export interface StreamTimeSettingsProps { busStartTime: Accessor; streamVideoInfo: Accessor; setStreamVideoInfo: Setter; + /// If true, shows a link to the same page with the specified stream and time range. For the link to work, the host + /// page must support defaulting the link data into the StreamVideoInfo. showTimeRangeLink: boolean; errorList: Accessor; setErrorList: Setter; @@ -301,7 +295,10 @@ export const VideoPlayer: Component = (props) => { - +