mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 22:00:31 +00:00
fix(webapp): general, accoutant and items preferences
This commit is contained in:
@@ -10,6 +10,7 @@ import { ActionMenuList, useCurrenciesTableColumns } from './components';
|
||||
|
||||
import withDialogActions from '@/containers/Dialog/withDialogActions';
|
||||
import withAlertActions from '@/containers/Alert/withAlertActions';
|
||||
import styled from 'styled-components';
|
||||
|
||||
/**
|
||||
* Currencies table.
|
||||
@@ -46,7 +47,7 @@ function CurrenciesDataTable({
|
||||
};
|
||||
|
||||
return (
|
||||
<DataTable
|
||||
<CurrencieDataTable
|
||||
columns={columns}
|
||||
data={currencies}
|
||||
loading={isCurrenciesLoading}
|
||||
@@ -68,3 +69,11 @@ export default compose(
|
||||
withDialogActions,
|
||||
withAlertActions,
|
||||
)(CurrenciesDataTable);
|
||||
|
||||
const CurrencieDataTable = styled(DataTable)`
|
||||
.table .th,
|
||||
.table .td {
|
||||
padding-top: 0.4rem;
|
||||
padding-bottom: 0.4rem;
|
||||
}
|
||||
`;
|
||||
|
||||
Reference in New Issue
Block a user