initial collapse functionality, also fixed random typo Arvados-DCO-1.1-Signed-off...
[arvados-workbench2.git] / src / views-components / side-panel / side-panel.tsx
index 218b624cd5675585120cf1b8d34b1322a0ff62c0..429e984dc1054dd60150d328433e42188ef9dba5 100644 (file)
@@ -13,7 +13,7 @@ import { Grid } from '@material-ui/core';
 import { SidePanelButton } from 'views-components/side-panel-button/side-panel-button';
 import { RootState } from 'store/store';
 
-const DRAWER_WITDH = 240;
+const DRAWER_WIDTH = 240;
 
 type CssRules = 'root';
 
@@ -23,7 +23,7 @@ const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
         borderRight: `1px solid ${theme.palette.divider}`,
         height: '100%',
         overflowX: 'auto',
-        width: DRAWER_WITDH,
+        width: DRAWER_WIDTH,
     }
 });