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