mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
feat: style read-only drawers.
fix: empty state in resources tables.
This commit is contained in:
@@ -15,10 +15,19 @@ function ExpenseDrawer({
|
||||
|
||||
//#withDrawer
|
||||
isOpen,
|
||||
payload: { expenseId, title },
|
||||
payload: { expenseId },
|
||||
}) {
|
||||
return (
|
||||
<Drawer isOpen={isOpen} name={name} title={intl.get('expense')}>
|
||||
<Drawer
|
||||
isOpen={isOpen}
|
||||
name={name}
|
||||
title={intl.get('expense')}
|
||||
size={'65%'}
|
||||
style={{
|
||||
minWidth: '700px',
|
||||
maxWidth: '900px',
|
||||
}}
|
||||
>
|
||||
<DrawerSuspense>
|
||||
<ExpenseDrawerContent expenseId={expenseId} />
|
||||
</DrawerSuspense>
|
||||
|
||||
Reference in New Issue
Block a user