youngtsai commited on
Commit
751a32a
·
1 Parent(s): 4d29ca2

past_exam_dropdown = gr.Radio(label="選擇考古題", choices=past_exam_choices)

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -1471,7 +1471,7 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.blue, secondary
1471
  with gr.Row():
1472
  exams_data = load_exam_data()
1473
  past_exam_choices = [exam["title"] for exam in exams_data["exams"]]
1474
- past_exam_dropdown = gr.Dropdown(label="選擇考古題", choices=past_exam_choices)
1475
  with gr.Row():
1476
  past_exam_title = gr.Markdown()
1477
  with gr.Row():
 
1471
  with gr.Row():
1472
  exams_data = load_exam_data()
1473
  past_exam_choices = [exam["title"] for exam in exams_data["exams"]]
1474
+ past_exam_dropdown = gr.Radio(label="選擇考古題", choices=past_exam_choices)
1475
  with gr.Row():
1476
  past_exam_title = gr.Markdown()
1477
  with gr.Row():