File tree Expand file tree Collapse file tree 1 file changed +16
-14
lines changed
packages/webui/src/client/ui/RundownView Expand file tree Collapse file tree 1 file changed +16
-14
lines changed Original file line number Diff line number Diff line change @@ -183,20 +183,22 @@ export function RundownRightHandControls(props: Readonly<IProps>): JSX.Element {
183183 >
184184 < RewindAllSegmentsIcon />
185185 </ button >
186- { ! props . isFollowingOnAir && (
187- < button
188- key = "followingOnAir"
189- className = "status-bar__controls__button"
190- role = "button"
191- onMouseEnter = { onOnAirMouseEnter }
192- onMouseLeave = { onOnAirMouseLeave }
193- onClick = { onOnAirClick }
194- tabIndex = { 0 }
195- aria-label = { t ( 'Go to On Air Segment' ) }
196- >
197- { onAirHover ? < Lottie config = { ONAIR_OVER } /> : < Lottie config = { ONAIR_OUT } /> }
198- </ button >
199- ) }
186+ < div >
187+ { ! props . isFollowingOnAir && (
188+ < button
189+ key = "followingOnAir"
190+ className = "status-bar__controls__button"
191+ role = "button"
192+ onMouseEnter = { onOnAirMouseEnter }
193+ onMouseLeave = { onOnAirMouseLeave }
194+ onClick = { onOnAirClick }
195+ tabIndex = { 0 }
196+ aria-label = { t ( 'Go to On Air Segment' ) }
197+ >
198+ { onAirHover ? < Lottie config = { ONAIR_OVER } /> : < Lottie config = { ONAIR_OUT } /> }
199+ </ button >
200+ ) }
201+ </ div >
200202 </ AnimatePresence >
201203 </ div >
202204 < div className = "status-bar__cell status-bar__cell--align-end" >
You can’t perform that action at this time.
0 commit comments