Fix: agregar slot #body al modal de trazabilidad
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 1m6s
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 1m6s
El componente LotesTrazabilidad no se estaba renderizando porque no estaba dentro del slot #body. El UModal de NuxtUI requiere que el contenido esté explícitamente en el slot #body para que se renderice correctamente. Cambios: - Envolver LotesTrazabilidad en <template #body> - El modal ahora muestra correctamente el contenido con scroll vertical
This commit is contained in:
@@ -214,10 +214,12 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<template #body>
|
||||||
<LotesTrazabilidad
|
<LotesTrazabilidad
|
||||||
v-if="trazabilidadLoteId"
|
v-if="trazabilidadLoteId"
|
||||||
:lote-id="trazabilidadLoteId"
|
:lote-id="trazabilidadLoteId"
|
||||||
/>
|
/>
|
||||||
|
</template>
|
||||||
</UModal>
|
</UModal>
|
||||||
|
|
||||||
<!-- Modal: Crear Operación -->
|
<!-- Modal: Crear Operación -->
|
||||||
|
|||||||
Reference in New Issue
Block a user