Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -333,10 +333,12 @@ def make_me():
|
|
333 |
index_first_model=gr.Dropdown(label="First model",choices=list(tags_plus_models[1][2]), type="index")
|
334 |
index_tag.change(lambda i:gr.Dropdown(choices=list(tags_plus_models[i][2])),index_tag,index_first_model)
|
335 |
with gr.Row():
|
336 |
-
list_models_to_gen=gr.Dropdown(choices=[["",[]]], value=[
|
337 |
disp_info=gr.Textbox(label="Info")
|
338 |
load_info=gr.Button("Load info")
|
339 |
load_info.click(fonc_load_info,[nb_of_models_to_gen,index_tag,index_first_model],[nb_of_models_to_gen,disp_info,list_models_to_gen])
|
|
|
|
|
340 |
|
341 |
js_code = """
|
342 |
|
|
|
333 |
index_first_model=gr.Dropdown(label="First model",choices=list(tags_plus_models[1][2]), type="index")
|
334 |
index_tag.change(lambda i:gr.Dropdown(choices=list(tags_plus_models[i][2])),index_tag,index_first_model)
|
335 |
with gr.Row():
|
336 |
+
list_models_to_gen=gr.Dropdown(choices=[["",[]]], value=[], visible=False)
|
337 |
disp_info=gr.Textbox(label="Info")
|
338 |
load_info=gr.Button("Load info")
|
339 |
load_info.click(fonc_load_info,[nb_of_models_to_gen,index_tag,index_first_model],[nb_of_models_to_gen,disp_info,list_models_to_gen])
|
340 |
+
load_info=gr.Button("Load info")
|
341 |
+
load_info.click(lambda x:print(x),list_models_to_gen,[])
|
342 |
|
343 |
js_code = """
|
344 |
|