File tree Expand file tree Collapse file tree
apps/desktop/src/routes/editor/Timeline Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -173,7 +173,10 @@ export function CaptionsTrack(props: {
173173 isSelected ( ) ? "border-green-7" : "border-transparent" ,
174174 ) }
175175 innerClass = "ring-green-6"
176- segment = { { start : segment . start , end : Math . min ( segment . end , totalDuration ( ) ) } }
176+ segment = { {
177+ start : segment . start ,
178+ end : Math . min ( segment . end , totalDuration ( ) ) ,
179+ } }
177180 onMouseDown = { ( e ) => {
178181 e . stopPropagation ( ) ;
179182 if ( editorState . timeline . interactMode === "split" ) {
Original file line number Diff line number Diff line change @@ -165,7 +165,10 @@ export function KeyboardTrack(props: {
165165 isSelected ( ) ? "border-sky-7" : "border-transparent" ,
166166 ) }
167167 innerClass = "ring-sky-6"
168- segment = { { start : segment . start , end : Math . min ( segment . end , totalDuration ( ) ) } }
168+ segment = { {
169+ start : segment . start ,
170+ end : Math . min ( segment . end , totalDuration ( ) ) ,
171+ } }
169172 onMouseDown = { ( e ) => {
170173 e . stopPropagation ( ) ;
171174 if ( editorState . timeline . interactMode === "split" ) {
You can’t perform that action at this time.
0 commit comments