We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45942be commit fc0f645Copy full SHA for fc0f645
streamlit_condition_tree/__init__.py
@@ -3,7 +3,7 @@
3
import streamlit as st
4
import streamlit.components.v1 as components
5
6
-_RELEASE = False
+_RELEASE = True
7
8
if not _RELEASE:
9
_component_func = components.declare_component(
streamlit_condition_tree/frontend/src/ConditionTree.tsx
@@ -159,7 +159,7 @@ class ConditionTree extends StreamlitComponentBase<State> {
159
// Set frame height
160
const height = Math.max(
161
document.body.scrollHeight + 20,
162
- this.state.expanded ? this.props.args['min_height'] : 100
+ this.state.expanded ? this.props.args['min_height'] : 150
163
);
164
Streamlit.setFrameHeight(height);
165
}
0 commit comments