Merge branch 'dev' of https://gitea.verdnatura.es/verdnatura/salix-front into dev
gitea/salix-front/pipeline/head This commit looks good Details

This commit is contained in:
Alex Moreno 2025-03-14 12:15:22 +01:00
commit 0c2127f63f
1 changed files with 2 additions and 4 deletions

View File

@ -176,12 +176,10 @@ const getSaleTotal = (sale) => {
const getRowUpdateInputEvents = (sale) => { const getRowUpdateInputEvents = (sale) => {
return { return {
'keyup.enter': (evt) => { 'keyup.enter': () => {
console.error(evt);
changeQuantity(sale); changeQuantity(sale);
}, },
blur: (evt) => { blur: () => {
console.error(evt);
changeQuantity(sale); changeQuantity(sale);
}, },
}; };