Skip to content

Commit 90f15f3

Browse files
committed
fix: Resolve Streamlit accessibility warning for text_area
1 parent 6a15d5d commit 90f15f3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -741,7 +741,7 @@ def compute_stats():
741741

742742
with col1:
743743
st.markdown("#### 📝 Claim Description")
744-
claim_text = st.text_area("", value=st.session_state.claim_text, height=120, placeholder="Describe the claim incident in detail, or select a sample claim below...", label_visibility="collapsed", key="claim_input")
744+
claim_text = st.text_area("Claim Description", value=st.session_state.claim_text, height=120, placeholder="Describe the claim incident in detail, or select a sample claim below...", label_visibility="collapsed", key="claim_input")
745745

746746
analyze_col, clear_col = st.columns([3, 1])
747747
with analyze_col:

0 commit comments

Comments
 (0)