Marek4321 commited on
Commit
23b7d52
·
verified ·
1 Parent(s): c7bea8b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -330,12 +330,14 @@ with tab2:
330
  with col1:
331
  option_label = f"{resp['Option']}-{resp['Response_ID']}"
332
  st.subheader(f"Option: {option_label}")
 
333
  st.text_area(
334
  "Odpowiedź:",
335
  value=resp['Response'],
336
  height=150,
337
  key=f"response_display_{idx}",
338
- disabled=True
 
339
  )
340
 
341
  with col2:
@@ -468,4 +470,4 @@ st.markdown(
468
  </div>
469
  """,
470
  unsafe_allow_html=True
471
- )
 
330
  with col1:
331
  option_label = f"{resp['Option']}-{resp['Response_ID']}"
332
  st.subheader(f"Option: {option_label}")
333
+ st.markdown("**Odpowiedź:**")
334
  st.text_area(
335
  "Odpowiedź:",
336
  value=resp['Response'],
337
  height=150,
338
  key=f"response_display_{idx}",
339
+ disabled=True,
340
+ label_visibility="collapsed"
341
  )
342
 
343
  with col2:
 
470
  </div>
471
  """,
472
  unsafe_allow_html=True
473
+ )