Merge branch 'release/v1.29.3'
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
NEXT_PUBLIC_API_NAME = "Loan Facilities Dashboard"
|
||||
NEXT_PUBLIC_API_VERSION = "1.29.1"
|
||||
NEXT_PUBLIC_API_VERSION = "1.29.3"
|
||||
NEXT_PUBLIC_DEFAULT_LANGUAGE = "fa"
|
||||
NEXT_PUBLIC_DEFAULT_DIRECTION = "rtl"
|
||||
|
||||
|
||||
@@ -59,7 +59,7 @@ const RequestCard = ({item}) => {
|
||||
{`${t("LoanFollowUp.loan_description")}: ${item.latest_history.expert_description}`}
|
||||
</Typography>
|
||||
)}
|
||||
{item.state_id === 8 && item.bank_status === 0 && (
|
||||
{item.state_id === 8 && item.bank_status == 0 && (
|
||||
<Button variant="contained" color="primary" sx={{alignSelf: 'flex-end'}}>
|
||||
<LinkRouting underline="none" color="inherit" href={`/dashboard/navgan/${item.id}/show`}>
|
||||
{t("LoanFollowUp.loan_details")}
|
||||
|
||||
@@ -26,7 +26,7 @@ const ShowLoanForm = () => {
|
||||
<Typography>{t("ShowLoan.loading_show_component")}</Typography>
|
||||
</Stack>
|
||||
);
|
||||
} else if (!(LoanDetails.state_id === 8 && LoanDetails.bank_status === 0)) {
|
||||
} else if (!(LoanDetails.state_id === 8 && LoanDetails.bank_status == 0)) {
|
||||
return (
|
||||
<Stack sx={{alignItems: "center", justifyContent: "center"}} spacing={3}>
|
||||
<Typography>{t("ShowLoan.error_message_not_show_state")}</Typography>
|
||||
|
||||
Reference in New Issue
Block a user