Config Page
This commit is contained in:
@@ -85,14 +85,14 @@ export const DetailUser = observer(() => {
|
||||
<Text strong>Name</Text>
|
||||
</Col>
|
||||
<Col span={12}>
|
||||
<Text>{store.membership.data.userDetail?.name}</Text>
|
||||
<Text>{store.membership.dataDetail.userDetail?.name}</Text>
|
||||
</Col>
|
||||
<Col span={12}>
|
||||
<Text strong>Username</Text>
|
||||
</Col>
|
||||
<Col span={12}>
|
||||
<Text>
|
||||
{store.membership.data.superior?.username}
|
||||
{store.membership.dataDetail.superior?.username}
|
||||
</Text>
|
||||
</Col>
|
||||
<Col span={12}>
|
||||
@@ -100,21 +100,21 @@ export const DetailUser = observer(() => {
|
||||
</Col>
|
||||
<Col span={12}>
|
||||
<Text>
|
||||
{store.membership.data.roles?.name}
|
||||
{store.membership.dataDetail.roles?.name}
|
||||
</Text>
|
||||
</Col>
|
||||
<Col span={12}>
|
||||
<Text strong>Phone Number</Text>
|
||||
</Col>
|
||||
<Col span={12}>
|
||||
<Text>{store.membership.data.userDetail?.phone_number}</Text>
|
||||
<Text>{store.membership.dataDetail.userDetail?.phone_number}</Text>
|
||||
</Col>
|
||||
<Col span={12}>
|
||||
<Text strong>Status</Text>
|
||||
</Col>
|
||||
<Col span={12}>
|
||||
<Text>
|
||||
{store.authentication.profileData.superior?.isActive === true ? "Inaktif": "Aktif"}
|
||||
{store.membership.dataDetail.isActive === true ? "Aktif": "Inaktif"}
|
||||
</Text>
|
||||
</Col>
|
||||
</Row>
|
||||
|
Reference in New Issue
Block a user