Fix: Usar nombres correctos de componentes LotesLotesTable y OperacionesOperacionesTable
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 16s

This commit is contained in:
2025-11-21 23:00:19 -06:00
parent a385f58500
commit acafcd1390

View File

@@ -85,7 +85,7 @@
<template #lotes> <template #lotes>
<div class="py-4"> <div class="py-4">
<h3>Contenido del Tab Lotes</h3> <h3>Contenido del Tab Lotes</h3>
<LotesTable <LotesLotesTable
@create="showCreateLoteModal = true" @create="showCreateLoteModal = true"
@view="handleViewLote" @view="handleViewLote"
@edit="handleEditLote" @edit="handleEditLote"
@@ -98,7 +98,7 @@
<template #operaciones> <template #operaciones>
<div class="py-4"> <div class="py-4">
<h3>Contenido del Tab Operaciones</h3> <h3>Contenido del Tab Operaciones</h3>
<OperacionesTable <OperacionesOperacionesTable
@create="showCreateOperacionModal = true" @create="showCreateOperacionModal = true"
@view="handleViewOperacion" @view="handleViewOperacion"
/> />