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

fix logDrawer too small issue

parent 80e37be0
No related branches found
No related tags found
No related merge requests found
...@@ -79,6 +79,12 @@ export default function App() { ...@@ -79,6 +79,12 @@ export default function App() {
window.storage.set(`experimentId.${connectionWithoutDots}`, experimentId); window.storage.set(`experimentId.${connectionWithoutDots}`, experimentId);
}, [experimentId]); }, [experimentId]);
useEffect(() => {
if (logsDrawerOpen) {
setLogsDrawerHeight(200);
}
}, [logsDrawerOpen]);
// Fetch the experiment info, if the experimentId changes // Fetch the experiment info, if the experimentId changes
const { const {
data: experimentInfo, data: experimentInfo,
......
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