Page Category

This commit is contained in:
2021-12-15 14:41:00 +07:00
parent 324dd47709
commit 7b95d2901b
16 changed files with 644 additions and 172 deletions

View File

@@ -72,7 +72,7 @@ export const PartnerComponent = observer((props) => {
dataIndex: "status",
key: "status",
render: (text, record) => (
<Button type={record?.status === true ? "primary" : "danger"}>
<Button size="small" type={record?.status === true ? "primary" : "danger"}>
{record?.status === true ? " ACTIVE" : "INACTIVE"}
</Button>
),