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>
|
||||
</template>
|
||||
|
||||
<LotesTrazabilidad
|
||||
v-if="trazabilidadLoteId"
|
||||
:lote-id="trazabilidadLoteId"
|
||||
/>
|
||||
<template #body>
|
||||
<LotesTrazabilidad
|
||||
v-if="trazabilidadLoteId"
|
||||
:lote-id="trazabilidadLoteId"
|
||||
/>
|
||||
</template>
|
||||
</UModal>
|
||||
|
||||
<!-- Modal: Crear Operación -->
|
||||
|
||||
Reference in New Issue
Block a user