Parishri07 commited on
Commit
569c20e
·
verified ·
1 Parent(s): 96af891

Update ui/navigator_tab.py

Browse files
Files changed (1) hide show
  1. ui/navigator_tab.py +11 -2
ui/navigator_tab.py CHANGED
@@ -5,10 +5,19 @@ from utils.data_utils import get_quantities_from_csv, display_quantity_info
5
 
6
  def reset_all():
7
  return (
8
- None, None, None, None, None, None, None,
9
- gr.update(choices=[], visible=False), "", {}
 
 
 
 
 
 
 
 
10
  )
11
 
 
12
  def create_navigator_tab():
13
  with gr.TabItem("🧭 Navigator"):
14
  with gr.Row():
 
5
 
6
  def reset_all():
7
  return (
8
+ None, # country
9
+ None, # state
10
+ None, # city
11
+ None, # store
12
+ None, # category
13
+ None, # product
14
+ None, # brand
15
+ gr.update(choices=[], visible=False), # quantity
16
+ "", # result Textbox
17
+ {} # data_state (Gradio state)
18
  )
19
 
20
+
21
  def create_navigator_tab():
22
  with gr.TabItem("🧭 Navigator"):
23
  with gr.Row():