fix: supplier menu
This commit is contained in:
parent
088ef0e27e
commit
787e74419e
|
@ -69,8 +69,8 @@ export const SupplierComponent = observer((props) => {
|
|||
,
|
||||
{
|
||||
title: "Saldo",
|
||||
dataIndex: "saldo",
|
||||
key: "saldo",
|
||||
dataIndex: ["coa","amount"],
|
||||
key: ["coa","amount"],
|
||||
},
|
||||
{
|
||||
title: "Status",
|
||||
|
|
|
@ -58,7 +58,7 @@ export const TopupsaldoModal = observer((props) => {
|
|||
label="Supplier"
|
||||
rules={[{ required: true, message: "Please input supplier!" }]}
|
||||
>
|
||||
<Input />
|
||||
<Input disabled={true} />
|
||||
</Form.Item>
|
||||
<Form.Item
|
||||
name="amount"
|
||||
|
|
|
@ -122,8 +122,8 @@ export const Membership = observer(() => {
|
|||
},
|
||||
{
|
||||
title: "Status",
|
||||
dataIndex: "status",
|
||||
key: "status",
|
||||
dataIndex: "isActive",
|
||||
key: "isActive",
|
||||
render: (text, record) => (
|
||||
<Tag
|
||||
color={record?.isActive === true ? "processing" : "#E3E8EE"}
|
||||
|
|
Loading…
Reference in New Issue
Block a user