mejorando la trazabilidad
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 1m5s

This commit is contained in:
2025-11-22 01:18:37 -06:00
parent 0bdb5013f7
commit f551fa67ed
3 changed files with 8 additions and 7 deletions

View File

@@ -76,20 +76,20 @@
icon="i-heroicons-eye"
size="xs"
variant="ghost"
@click="$emit('view', row)"
@click="$emit('view', row.original as Lote)"
/>
<UButton
icon="i-heroicons-pencil"
size="xs"
variant="ghost"
@click="$emit('edit', row)"
@click="$emit('edit', row.original as Lote)"
/>
<UButton
icon="i-heroicons-chart-bar"
size="xs"
variant="ghost"
color="green"
@click="$emit('trazabilidad', row)"
@click="$emit('trazabilidad', row.original as Lote)"
/>
</div>
</template>