Spaces:
Sleeping
Sleeping
Commit
·
74386d3
1
Parent(s):
a15f9dd
fix typo.
Browse files
app.py
CHANGED
@@ -98,7 +98,7 @@ with st.sidebar:
|
|
98 |
'How would you like to be your Headlines?',
|
99 |
('**Emphasis**', '# Header', 'No headlines'))
|
100 |
|
101 |
-
if in_headline_type
|
102 |
in_headlines = st.text_area("Headlines: ", placeholder="Enter each headline in one line. e.g.,\nWelcome\nConcise Description\nAdditional Info", on_change=None, height=200)
|
103 |
else:
|
104 |
in_headline_type = '<|EMPTY|>'
|
|
|
98 |
'How would you like to be your Headlines?',
|
99 |
('**Emphasis**', '# Header', 'No headlines'))
|
100 |
|
101 |
+
if in_headline_type!='No headlines':
|
102 |
in_headlines = st.text_area("Headlines: ", placeholder="Enter each headline in one line. e.g.,\nWelcome\nConcise Description\nAdditional Info", on_change=None, height=200)
|
103 |
else:
|
104 |
in_headline_type = '<|EMPTY|>'
|