ssboost commited on
Commit
aec6db2
·
verified ·
1 Parent(s): d6c8aa6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -558,7 +558,8 @@ def create_app():
558
  choices=["전체 보기"],
559
  label="카테고리 필터",
560
  value="전체 보기",
561
- interactive=True
 
562
  )
563
  with gr.Column(scale=1):
564
  total_volume_sort = gr.Dropdown(
@@ -603,7 +604,8 @@ def create_app():
603
  label="분석할 카테고리(분석 전 반드시 선택해주세요)",
604
  choices=["전체 보기"],
605
  value="전체 보기",
606
- interactive=True
 
607
  )
608
 
609
  with gr.Column(elem_classes="execution-section", visible=False) as execution_section:
 
558
  choices=["전체 보기"],
559
  label="카테고리 필터",
560
  value="전체 보기",
561
+ interactive=True,
562
+ allow_custom_value=True # 사용자 정의 값 허용
563
  )
564
  with gr.Column(scale=1):
565
  total_volume_sort = gr.Dropdown(
 
604
  label="분석할 카테고리(분석 전 반드시 선택해주세요)",
605
  choices=["전체 보기"],
606
  value="전체 보기",
607
+ interactive=True,
608
+ allow_custom_value=True # 사용자 정의 값 허용
609
  )
610
 
611
  with gr.Column(elem_classes="execution-section", visible=False) as execution_section: