Merge pull request #1755 from RafaelTaranto/backport/cashbox-tables

LAM-820 backport: cashbox tables
This commit is contained in:
Rafael Taranto 2024-11-29 13:46:14 +00:00 committed by GitHub
commit 748f1371d1
2 changed files with 16 additions and 8 deletions

View file

@ -5,7 +5,7 @@ export default {
height: 36 height: 36
}, },
tBody: { tBody: {
maxHeight: '65vh', maxHeight: 'calc(100vh - 350px)',
overflow: 'auto' overflow: 'auto'
}, },
tableWidth: { tableWidth: {

View file

@ -51,6 +51,12 @@ const styles = {
display: 'flex', display: 'flex',
flexDirection: 'row', flexDirection: 'row',
justifyContent: 'space-between' justifyContent: 'space-between'
},
tableWrapper: {
display: 'flex',
flexDirection: 'column',
flex: 1,
marginBottom: 80
} }
} }
@ -243,6 +249,7 @@ const CashboxHistory = ({ machines, currency, timezone }) => {
] ]
return ( return (
<div className={classes.tableWrapper}>
<DataTable <DataTable
loading={loading} loading={loading}
name="cashboxHistory" name="cashboxHistory"
@ -250,6 +257,7 @@ const CashboxHistory = ({ machines, currency, timezone }) => {
data={batches} data={batches}
emptyText="No cash box batches so far" emptyText="No cash box batches so far"
/> />
</div>
) )
} }