From 16175b7fd47edb50fab9a645b0c0a402068eba4d Mon Sep 17 00:00:00 2001 From: josedario87 Date: Fri, 31 Oct 2025 10:30:56 -0600 Subject: [PATCH] =?UTF-8?q?Fix:=20Corregir=20configuraci=C3=B3n=20del=20mo?= =?UTF-8?q?dal=20de=20resultados?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Cambiar v-model a v-model:open según @nuxt/ui v4.0.0 - Eliminar UCard interno que causaba renderizado permanente - Usar slots nativos del Modal (#header) en lugar de Card - Simplificar estilos usando clases de Tailwind estándar - El modal ahora se mostrará solo cuando showResults sea true --- .../metabase/MetabaseCardsTable.vue | 100 +++++++++--------- 1 file changed, 49 insertions(+), 51 deletions(-) diff --git a/nuxt4-app/app/components/metabase/MetabaseCardsTable.vue b/nuxt4-app/app/components/metabase/MetabaseCardsTable.vue index 21f789f..fabcd0b 100644 --- a/nuxt4-app/app/components/metabase/MetabaseCardsTable.vue +++ b/nuxt4-app/app/components/metabase/MetabaseCardsTable.vue @@ -32,63 +32,61 @@ /> - - - + + -
-
-
- Filas: - {{ currentResult.data?.rows?.length || 0 }} -
-
- Tiempo: - {{ currentResult.running_time || 0 }}ms -
-
- Estado: - - {{ currentResult.status }} - -
+
+
+
+ Filas: + {{ currentResult.data?.rows?.length || 0 }}
- - -
-
- - - -
-

No hay datos

-

La consulta se ejecutó correctamente pero no devolvió resultados.

+
+ Tiempo: + {{ currentResult.running_time || 0 }}ms
- - -
-
{{ JSON.stringify(currentResult.data, null, 2) }}
+
+ Estado: + + {{ currentResult.status }} +
- - + +
+
+ + + +
+

No hay datos

+

La consulta se ejecutó correctamente pero no devolvió resultados.

+
+ + +
+
{{ JSON.stringify(currentResult.data, null, 2) }}
+
+
+ +