Adrien Banse
commited on
Commit
·
9a75d39
1
Parent(s):
5d2d2fe
fix: order of mix variables
Browse files
app.py
CHANGED
@@ -308,8 +308,8 @@ with gr.Blocks(css=custom_css) as demo:
|
|
308 |
)
|
309 |
|
310 |
mix.change(fn=mix_fn,
|
311 |
-
inputs=[mix,
|
312 |
-
outputs=[
|
313 |
input_mix_gwp.input(fn=custom, outputs=mix)
|
314 |
input_mix_adpe.input(fn=custom, outputs=mix)
|
315 |
input_mix_pe.input(fn=custom, outputs=mix)
|
|
|
308 |
)
|
309 |
|
310 |
mix.change(fn=mix_fn,
|
311 |
+
inputs=[mix, input_mix_adpe, input_mix_pe, input_mix_gwp],
|
312 |
+
outputs=[input_mix_adpe, input_mix_pe, input_mix_gwp])
|
313 |
input_mix_gwp.input(fn=custom, outputs=mix)
|
314 |
input_mix_adpe.input(fn=custom, outputs=mix)
|
315 |
input_mix_pe.input(fn=custom, outputs=mix)
|