fix: custom data and requirements not editable
This commit is contained in:
parent
7cd6604a5f
commit
0fb9f5c816
1 changed files with 4 additions and 2 deletions
|
|
@ -293,7 +293,8 @@ const CustomerData = ({
|
||||||
name: it.customInfoRequest.id,
|
name: it.customInfoRequest.id,
|
||||||
label: it.customInfoRequest.customRequest.name,
|
label: it.customInfoRequest.customRequest.name,
|
||||||
value: it.customerData.data ?? '',
|
value: it.customerData.data ?? '',
|
||||||
component: TextInput
|
component: TextInput,
|
||||||
|
editable: true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
title: it.customInfoRequest.customRequest.name,
|
title: it.customInfoRequest.customRequest.name,
|
||||||
|
|
@ -344,7 +345,8 @@ const CustomerData = ({
|
||||||
name: it.label,
|
name: it.label,
|
||||||
label: it.label,
|
label: it.label,
|
||||||
value: it.value ?? '',
|
value: it.value ?? '',
|
||||||
component: TextInput
|
component: TextInput,
|
||||||
|
editable: true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
title: it.label,
|
title: it.label,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue