Update app.py
Browse files
app.py
CHANGED
@@ -299,7 +299,11 @@ st.markdown("---")
|
|
299 |
def clear_text():
|
300 |
st.session_state["text_url"] = ""
|
301 |
st.session_state["text_input"]= ""
|
302 |
-
|
|
|
|
|
|
|
|
|
303 |
|
304 |
st.markdown(
|
305 |
"<h3 style='text-align: center; color: red;'>OR</h3>",
|
|
|
299 |
def clear_text():
|
300 |
st.session_state["text_url"] = ""
|
301 |
st.session_state["text_input"]= ""
|
302 |
+
|
303 |
+
def clear_search_text():
|
304 |
+
st.session_state["text_input"]= ""
|
305 |
+
|
306 |
+
url_text = st.text_input("Please Enter a url here",value="https://www.rba.gov.au/monetary-policy/rba-board-minutes/2022/2022-05-03.html",key='text_url',on_change=clear_search_text)
|
307 |
|
308 |
st.markdown(
|
309 |
"<h3 style='text-align: center; color: red;'>OR</h3>",
|