mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-23 00:00:31 +00:00
Merge branch 'develop' of https://github.com/BigcapitalTech/bigcapital-client into develop
This commit is contained in:
@@ -7,9 +7,6 @@ jobs:
|
||||
working_directory: ~/app
|
||||
docker:
|
||||
- image: docker:17.05.0-ce-git
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
steps:
|
||||
- checkout:
|
||||
path: ~/app
|
||||
@@ -43,3 +40,11 @@ jobs:
|
||||
command: |
|
||||
docker login -u abouhuolia -p 1532015325_ASdfqwer
|
||||
docker push abouhuolia/bigcapital-client:latest
|
||||
|
||||
workflows:
|
||||
build_and_publish: # name of your workflow
|
||||
jobs:
|
||||
- build:
|
||||
filters:
|
||||
branches:
|
||||
only: master
|
||||
|
||||
@@ -35,7 +35,7 @@ function BillTransactionDeleteAlert({
|
||||
deleteLandedCostMutate(BillId)
|
||||
.then(() => {
|
||||
AppToaster.show({
|
||||
message: intl.get('the_landed_cost_has_been_deleted_successfully'),
|
||||
message: intl.get('bill.action.delete_successfully.landed_cost'),
|
||||
intent: Intent.SUCCESS,
|
||||
});
|
||||
closeAlert(name);
|
||||
|
||||
@@ -19,12 +19,7 @@ function InventoryAdjustmentDetailDrawer({
|
||||
payload: { inventoryId },
|
||||
}) {
|
||||
return (
|
||||
<Drawer
|
||||
isOpen={isOpen}
|
||||
name={name}
|
||||
style={{ minWidth: '700px', maxWidth: '900px' }}
|
||||
size={'65%'}
|
||||
>
|
||||
<Drawer isOpen={isOpen} name={name} size={'750px'}>
|
||||
<DrawerSuspense>
|
||||
<InventoryAdjustmentDrawerContent inventoryId={inventoryId} />
|
||||
</DrawerSuspense>
|
||||
|
||||
@@ -34,7 +34,7 @@ function PaymentMadeDetailProvider({ paymentMadeId, ...props }) {
|
||||
} = useTransactionsByReference(
|
||||
{
|
||||
reference_id: paymentMadeId,
|
||||
reference_type: 'paymentMade',
|
||||
reference_type: 'BillPayment',
|
||||
},
|
||||
{ enabled: !!paymentMadeId },
|
||||
);
|
||||
|
||||
@@ -17,8 +17,9 @@
|
||||
display: block;
|
||||
|
||||
.thead {
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
overflow: hidden;
|
||||
// overflow-y: auto;
|
||||
// overflow-x: hidden;
|
||||
|
||||
.th {
|
||||
padding: 0.7rem 0.5rem;
|
||||
@@ -115,7 +116,7 @@
|
||||
.inner-resizer {
|
||||
height: 100%;
|
||||
width: 1px;
|
||||
border-left: 1px solid #E6E6E6;
|
||||
border-left: 1px solid #e6e6e6;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
@@ -142,10 +143,10 @@
|
||||
}
|
||||
|
||||
.skeleton {
|
||||
animation: skeleton-fade-in .3s linear forwards,
|
||||
animation: skeleton-fade-in 0.3s linear forwards,
|
||||
skeleton-glow 1s linear infinite alternate;
|
||||
|
||||
animation-delay: 0s,.3s;
|
||||
animation-delay: 0s, 0.3s;
|
||||
height: 8px;
|
||||
opacity: 1;
|
||||
width: 65%;
|
||||
@@ -219,7 +220,6 @@
|
||||
}
|
||||
}
|
||||
.tr.no-results {
|
||||
|
||||
.td {
|
||||
flex-direction: column;
|
||||
padding: 18px 20px;
|
||||
@@ -332,14 +332,11 @@
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.ReactVirtualized__Grid {
|
||||
will-change: auto !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.table-constrant {
|
||||
.table {
|
||||
.thead .th {
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
.detail_panel {
|
||||
:global .card {
|
||||
padding: 22px 15px;
|
||||
margin: 15px;
|
||||
}
|
||||
|
||||
&_header {
|
||||
@@ -9,6 +10,7 @@
|
||||
|
||||
&_table {
|
||||
:global .bigcapital-datatable {
|
||||
margin-top: 30px;
|
||||
.thead,
|
||||
.tbody {
|
||||
.quantity,
|
||||
|
||||
Reference in New Issue
Block a user