fix: sms receipt tx direction
This commit is contained in:
parent
c8f5e471be
commit
f205f99d7f
2 changed files with 2 additions and 2 deletions
|
|
@ -27,7 +27,7 @@ const BooleanCell = ({ name }) => {
|
|||
const BooleanPropertiesTable = memo(
|
||||
({ title, disabled, data, elements, save, forcedEditing = false }) => {
|
||||
const initialValues = R.fromPairs(
|
||||
elements.map(it => [it.name, data[it.name].toString() ?? null])
|
||||
elements.map(it => [it.name, data[it.name]?.toString() ?? null])
|
||||
)
|
||||
|
||||
const schemaValidation = R.fromPairs(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue