awacke1 commited on
Commit
e6c73e6
·
1 Parent(s): 57a9fd0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -15,8 +15,9 @@ while True:
15
  # Refresh the screen
16
  st.experimental_rerun()
17
 
 
18
  # Show the text area
19
- text_input = st.text_area('Crowdsource', key=str(now))
20
 
21
  # When data is saved there, append it to a "Log.txt" file
22
  if text_input:
 
15
  # Refresh the screen
16
  st.experimental_rerun()
17
 
18
+ uniqueKey = str(now)
19
  # Show the text area
20
+ text_input = st.text_area('Crowdsource', key=uniqueKey)
21
 
22
  # When data is saved there, append it to a "Log.txt" file
23
  if text_input: