Spaces:
Sleeping
Sleeping
Commit
·
b54fe3d
1
Parent(s):
c2d8cf6
Update app.py
Browse files
app.py
CHANGED
@@ -90,16 +90,17 @@ with st.sidebar:
|
|
90 |
in_name = st.text_input("Name Metadata: ", placeholder="e.g., Bug Report or Feqture Request or Question", on_change=None)
|
91 |
in_about = st.text_input("About Metadata: ", placeholder="e.g., File a bug report", on_change=None)
|
92 |
|
93 |
-
|
94 |
if empty_title == False:
|
95 |
in_title = st.text_input("Title Metadata: ", placeholder="e.g., [Bug]: ", on_change=None)
|
|
|
96 |
|
97 |
empty_labels = st.checkbox('without labels')
|
98 |
if empty_labels == False:
|
99 |
in_labels = st.text_input("Labels Metadata: ", placeholder="e.g., feature, enhancement", on_change=None)
|
100 |
|
101 |
empty_assignees = st.checkbox('without Assignees')
|
102 |
-
if
|
103 |
in_assignees = st.text_input("Assignees Metadata: ", placeholder="e.g., USER_1, USER_2", on_change=None)
|
104 |
|
105 |
# if no headlines is selected, force the headlines to be empty as well.
|
|
|
90 |
in_name = st.text_input("Name Metadata: ", placeholder="e.g., Bug Report or Feqture Request or Question", on_change=None)
|
91 |
in_about = st.text_input("About Metadata: ", placeholder="e.g., File a bug report", on_change=None)
|
92 |
|
93 |
+
|
94 |
if empty_title == False:
|
95 |
in_title = st.text_input("Title Metadata: ", placeholder="e.g., [Bug]: ", on_change=None)
|
96 |
+
empty_title = st.checkbox('without title')
|
97 |
|
98 |
empty_labels = st.checkbox('without labels')
|
99 |
if empty_labels == False:
|
100 |
in_labels = st.text_input("Labels Metadata: ", placeholder="e.g., feature, enhancement", on_change=None)
|
101 |
|
102 |
empty_assignees = st.checkbox('without Assignees')
|
103 |
+
if empty_assignees == False:
|
104 |
in_assignees = st.text_input("Assignees Metadata: ", placeholder="e.g., USER_1, USER_2", on_change=None)
|
105 |
|
106 |
# if no headlines is selected, force the headlines to be empty as well.
|