ui: assist console size and init fixes
This commit is contained in:
parent
e5fd1b235e
commit
246d186816
2 changed files with 2 additions and 3 deletions
|
|
@ -83,9 +83,8 @@ function Player(props: IProps) {
|
|||
<div
|
||||
onMouseDown={handleResize}
|
||||
className={'w-full h-2 cursor-ns-resize absolute top-0 left-0 z-20'}
|
||||
>
|
||||
/>
|
||||
<ConsolePanel isLive />
|
||||
</div>
|
||||
</div>
|
||||
) : null}
|
||||
{!fullView && !isMultiview ? <LiveControls jump={playerContext.player.jump} /> : null}
|
||||
|
|
|
|||
|
|
@ -117,7 +117,7 @@ function ConsolePanel({
|
|||
exceptionsList = [],
|
||||
logListNow = [],
|
||||
exceptionsListNow = [],
|
||||
} = tabStates[currentTab];
|
||||
} = tabStates[currentTab] ?? {};
|
||||
|
||||
const list = isLive
|
||||
? (useMemo(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue