fix: add bottom margin to right side panel

fix: date break in transactions list
This commit is contained in:
Nikola Ubavic 2022-02-21 12:58:42 +01:00
parent e1d700cb39
commit 18c92d2536
2 changed files with 3 additions and 2 deletions

View file

@ -31,7 +31,8 @@ export default {
}, },
rightSidePanel: { rightSidePanel: {
display: 'block', display: 'block',
width: 1100 width: 1100,
marginBottom: 25
}, },
leftSidePanel: { leftSidePanel: {
width: 300, width: 300,

View file

@ -120,7 +120,7 @@ const TransactionsList = ({ customer, data, loading, locale }) => {
{ {
header: 'Date', header: 'Date',
width: 100, width: 100,
view: it => formatDate(it.created, timezone, 'yyyy-MM-dd') view: it => formatDate(it.created, timezone, 'yyyyMMdd')
}, },
{ {
header: 'Time (h:m:s)', header: 'Time (h:m:s)',