Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -419,7 +419,7 @@ with gr.Blocks(theme=theme) as demo:
|
|
419 |
for group in range(0, len(image_groups), 3): # Iterar en sets de 3 carruseles
|
420 |
with gr.Column(scale=1): # Crear columna para cada carrusel
|
421 |
with gr.Tabs():
|
422 |
-
for idx in range(
|
423 |
if group + idx < len(image_groups):
|
424 |
images_in_carousel = image_groups[group + idx]
|
425 |
|
|
|
419 |
for group in range(0, len(image_groups), 3): # Iterar en sets de 3 carruseles
|
420 |
with gr.Column(scale=1): # Crear columna para cada carrusel
|
421 |
with gr.Tabs():
|
422 |
+
for idx in range(4): # N carruseles por columna
|
423 |
if group + idx < len(image_groups):
|
424 |
images_in_carousel = image_groups[group + idx]
|
425 |
|