web app - set header anchor to false
authorClaromes <claromes@hey.com>
Mon, 24 Jun 2024 21:15:06 +0000 (18:15 -0300)
committerClaromes <claromes@hey.com>
Mon, 24 Jun 2024 21:15:06 +0000 (18:15 -0300)
app/app.py

index f47c3e46bdaa17c282391cf4eaf3638d6096f9a2..cd86faefc2a97802647263ed6796e0140cd9570e 100644 (file)
@@ -141,7 +141,7 @@ st.write(
 )
 
 st.write(
-    "This application uses the Wayback Tweets Python package, which can be used either as a module or as a standalone command-line tool. [Read the documentation](https://claromes.github.io/waybacktweets) for more information.."  # noqa: E501
+    "This application uses the Wayback Tweets Python package, which can be used either as a module or as a standalone command-line tool. [Read the documentation](https://claromes.github.io/waybacktweets) for more information."  # noqa: E501
 )
 
 st.write(
@@ -248,7 +248,7 @@ if query or st.session_state.count:
 
             # -- HTML -- #
 
-            st.header("HTML", divider="gray")
+            st.header("HTML", divider="gray", anchor=False)
             st.write(
                 f"Visualize tweets more efficiently through `iframes`. Download the @{st.session_state.current_username}'s archived tweets in HTML."  # noqa: E501
             )
@@ -269,7 +269,7 @@ if query or st.session_state.count:
 
             # -- CSV -- #
 
-            st.header("CSV", divider="gray")
+            st.header("CSV", divider="gray", anchor=False)
             st.write(
                 "Check the data returned in the dataframe below and download the file."
             )
@@ -292,7 +292,7 @@ if query or st.session_state.count:
 
             # -- JSON -- #
 
-            st.header("JSON", divider="gray")
+            st.header("JSON", divider="gray", anchor=False)
             st.write(
                 "Check the data returned in JSON format below and download the file."
             )