diff --git a/src/ui/React/LogBoxManager.tsx b/src/ui/React/LogBoxManager.tsx index 0b892da12..da20bb32e 100644 --- a/src/ui/React/LogBoxManager.tsx +++ b/src/ui/React/LogBoxManager.tsx @@ -265,10 +265,22 @@ function LogWindow(props: IProps): React.ReactElement { - {!workerScripts.has(script.pid) && } - {workerScripts.has(script.pid) && } - - + {!workerScripts.has(script.pid) && ( + + )} + {workerScripts.has(script.pid) && ( + + )} + + diff --git a/src/ui/React/Overview.tsx b/src/ui/React/Overview.tsx index d1bdf2a56..8923cbd27 100644 --- a/src/ui/React/Overview.tsx +++ b/src/ui/React/Overview.tsx @@ -130,7 +130,14 @@ export function Overview({ children, mode }: IProps): React.ReactElement { size="small" className={classes.visibilityToggle} > - { setOpen((old) => !old)} />} + { + setOpen((old) => !old)} + onTouchEnd={() => setOpen((old) => !old)} + /> + }