Merge branch 'release/v1.26.10'

This commit is contained in:
AmirHossein Mahmoodi
2024-01-01 16:39:42 +03:30
2 changed files with 17 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
NEXT_PUBLIC_API_NAME = "Loan Facilities Dashboard"
NEXT_PUBLIC_API_VERSION = "1.26.4"
NEXT_PUBLIC_API_VERSION = "1.26.10"
NEXT_PUBLIC_DEFAULT_LANGUAGE = "fa"
NEXT_PUBLIC_DEFAULT_DIRECTION = "rtl"

View File

@@ -188,11 +188,14 @@ const AddFormComponent = () => {
size={'small'}
value={formik.values.person_type}
exclusive
onChange={(e, value) => formik.handleChange({
target: {
name: "person_type", value: value,
},
})}
onChange={(e, value) => {
if (value === null) return
formik.handleChange({
target: {
name: "person_type", value: value,
},
})
}}
>
<ToggleButton value="real">
{t("LoanRequest.real_person")}
@@ -273,11 +276,14 @@ const AddFormComponent = () => {
size={'small'}
value={formik.values.national_serial_number_or_tracking_code}
exclusive
onChange={(e, value) => formik.handleChange({
target: {
name: "national_serial_number_or_tracking_code", value: value,
},
})}
onChange={(e, value) => {
if (value === null) return
formik.handleChange({
target: {
name: "national_serial_number_or_tracking_code", value: value,
},
})
}}
>
<ToggleButton value="national_serial_number">
{t("LoanRequest.text_field_shenasname_serial")}