Skip to content

Commit

Permalink
fix delivery order totals
Browse files Browse the repository at this point in the history
  • Loading branch information
soker90 committed Jul 13, 2023
1 parent ed9004a commit 106d50c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# [3.4.2] - 13/07/2023
- Corregida visualización de los totales en la modal de editar totales de un albarán

# [3.4.1] - 13/07/2023
- Corregida base imponible en el modal de editar totales de una factura

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"author": "Eduardo Parra Mazuecos",
"email": "eduparra90@gmail.com",
"licence": "MIT",
"version": "3.4.1",
"version": "3.4.2",
"private": true,
"type": "module",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const DeliveryOrderTotals = ({
</Grid>
</CardContent>
</Card>
<EditTotalsModal show={showModal} setShow={setShowModal} update={updateData} {...totals} />
{showModal && <EditTotalsModal show={showModal} setShow={setShowModal} update={updateData} {...totals} />}
</>
)
}
Expand All @@ -74,6 +74,4 @@ DeliveryOrderTotals.propTypes = {
updateData: PropTypes.func.isRequired
}

DeliveryOrderTotals.displayName = 'DeliveryOrderTotals'
export const story = DeliveryOrderTotals
export default DeliveryOrderTotals

1 comment on commit 106d50c

@vercel
Copy link

@vercel vercel bot commented on 106d50c Jul 13, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

arroyo-erp-client – ./

arroyo-erp-client-git-master-soker90.vercel.app
arroyo-erp-client-soker90.vercel.app
arroyo-erp-client.vercel.app

Please sign in to comment.