Skip to content
Snippets Groups Projects
Commit 78aecdff authored by ali asaria's avatar ali asaria
Browse files

don't show dragbar if closed

parent 5c9384d0
No related branches found
No related tags found
No related merge requests found
......@@ -201,7 +201,11 @@ export default function App() {
}}
>
<div>&nbsp;</div>
<DraggableElipsis notifyOnMove={onOutputDrawerDrag} />
{logsDrawerOpen ? (
<DraggableElipsis notifyOnMove={onOutputDrawerDrag} />
) : (
<>&nbsp;</>
)}
<IconButton
sx={{ padding: 0, margin: 0, minHeight: 0 }}
onClick={() => setLogsDrawerOpen(!logsDrawerOpen)}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment