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 1026d99 commit 7c383b0Copy full SHA for 7c383b0
nebulagraph-gephi-exchange.py
@@ -597,14 +597,15 @@ def get_gephi_graph(g) -> None:
597
598
# df table
599
st.markdown("---")
600
- st.markdown(
601
- f"""
+ if len(st.session_state.queries) >= index + 1:
+ st.markdown(
602
+ f"""
603
```cypher
604
-- Query {index + 1}
605
{st.session_state.queries[index]}
606
```
-"""
607
- )
+ """
608
+ )
609
try:
610
st.dataframe(
611
csv_df,
0 commit comments