Anne31415 commited on
Commit
1ee8d13
·
1 Parent(s): 14a29f5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -7
app.py CHANGED
@@ -175,19 +175,19 @@ def main():
175
  st.markdown("""
176
  <script>
177
  document.getElementById('question1').onclick = function() {
178
- document.querySelector('input').value = 'Was genau ist ein Belegarzt?';
179
- document.querySelector('input').dispatchEvent(new Event('change'));
180
  };
181
  document.getElementById('question2').onclick = function() {
182
- document.querySelector('input').value = 'Wofür wird die Alpha-ID verwendet?';
183
- document.querySelector('input').dispatchEvent(new Event('change'));
184
  };
185
  document.getElementById('question3').onclick = function() {
186
- document.querySelector('input').value = 'Was sind die Vorteile des ambulanten operierens?';
187
- document.querySelector('input').dispatchEvent(new Event('change'));
188
  };
189
  </script>
190
  """, unsafe_allow_html=True)
191
 
192
  if __name__ == "__main__":
193
- main()
 
175
  st.markdown("""
176
  <script>
177
  document.getElementById('question1').onclick = function() {
178
+ document.querySelectorAll('div.stTextInput input')[0].value = 'Was genau ist ein Belegarzt?';
179
+ document.querySelectorAll('div.stTextInput input')[0].dispatchEvent(new Event('change'));
180
  };
181
  document.getElementById('question2').onclick = function() {
182
+ document.querySelectorAll('div.stTextInput input')[0].value = 'Wofür wird die Alpha-ID verwendet?';
183
+ document.querySelectorAll('div.stTextInput input')[0].dispatchEvent(new Event('change'));
184
  };
185
  document.getElementById('question3').onclick = function() {
186
+ document.querySelectorAll('div.stTextInput input')[0].value = 'Was sind die Vorteile des ambulanten operierens?';
187
+ document.querySelectorAll('div.stTextInput input')[0].dispatchEvent(new Event('change'));
188
  };
189
  </script>
190
  """, unsafe_allow_html=True)
191
 
192
  if __name__ == "__main__":
193
+ main()