0
0
Fork 0
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);
},
};