@@ -129,12 +129,12 @@ def record_update():
129129 # Text input for the question, storing the user's input in the session state
130130 state .index_output = st .write ("Record: " + str (state .index + 1 ) + "/" + str (state .df .shape [0 ]))
131131 state .hide_input = st .checkbox ("Hide" , value = state .hide_input )
132- state .question_input = st .text_area ("question" , height = 1 , value = state .question_input )
133- state .reference_answer_input = st .text_area ("Reference answer" , height = 1 , value = state .reference_answer_input )
132+ state .question_input = st .text_area ("question" , height = 100 , value = state .question_input )
133+ state .reference_answer_input = st .text_area ("Reference answer" , height = 100 , value = state .reference_answer_input )
134134 state .reference_context_input = st .text_area (
135- "Reference context" , height = 10 , value = state .reference_context_input , disabled = True
135+ "Reference context" , height = 100 , value = state .reference_context_input , disabled = True
136136 )
137- state .metadata_input = st .text_area ("Metadata" , height = 1 , value = state .metadata_input , disabled = True )
137+ state .metadata_input = st .text_area ("Metadata" , height = 100 , value = state .metadata_input , disabled = True )
138138
139139 if save_clicked :
140140 st .success ("Q&A saved successfully!" )
0 commit comments