We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c86d291 commit bc09581Copy full SHA for bc09581
ui-manchette/src/components/Manchette.tsx
@@ -30,13 +30,10 @@ const Manchette = ({
30
isProportional = true,
31
toggleMode,
32
children,
33
- height,
+ height = INITIAL_OP_LIST_HEIGHT,
34
}: ManchetteProps) => (
35
<div className="manchette-container">
36
- <div
37
- className="bg-white-100 border-r border-grey-30"
38
- style={{ minHeight: `${INITIAL_OP_LIST_HEIGHT}px`, height }}
39
- >
+ <div className="bg-white-100 border-r border-grey-30" style={{ height: `${height}px` }}>
40
<WaypointList waypoints={waypoints} activeWaypointId={activeWaypointId} />
41
{children}
42
</div>
0 commit comments