From 16f9997a8e2e2b87932ca061bf5731cd65d1d588 Mon Sep 17 00:00:00 2001 From: Claromes Date: Mon, 24 Jun 2024 18:15:06 -0300 Subject: [PATCH] web app - set header anchor to false --- app/app.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/app.py b/app/app.py index f47c3e4..cd86fae 100644 --- a/app/app.py +++ b/app/app.py @@ -141,7 +141,7 @@ def tweets_exporter(parsed_tweets, username, field_options): ) 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 @@ def tweets_exporter(parsed_tweets, username, field_options): # -- 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 @@ def tweets_exporter(parsed_tweets, username, field_options): # -- 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 @@ def tweets_exporter(parsed_tweets, username, field_options): # -- 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." )