fix: custom data and requirements not editable

This commit is contained in:
José Oliveira 2022-01-26 18:30:59 +00:00
parent 7cd6604a5f
commit 0fb9f5c816

View file

@ -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,