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) => {
return {
'keyup.enter': (evt) => {
console.error(evt);
'keyup.enter': () => {
changeQuantity(sale);
},
blur: (evt) => {
console.error(evt);
blur: () => {
changeQuantity(sale);
},
};