This commit is contained in:
parent
bc4b4196f4
commit
00ac89287b
|
@ -110,7 +110,7 @@ function WalletFields ({ wallet: { config, fields, isConfigured } }) {
|
||||||
...props,
|
...props,
|
||||||
name,
|
name,
|
||||||
initialValue: config?.[name],
|
initialValue: config?.[name],
|
||||||
readOnly: isClient && isConfigured && editable === false && !!config?.[name],
|
readOnly: isClient && editable === false && ((isConfigured && !!config?.[name]) || !!props.value),
|
||||||
groupClassName: props.hidden ? 'd-none' : undefined,
|
groupClassName: props.hidden ? 'd-none' : undefined,
|
||||||
label: label
|
label: label
|
||||||
? (
|
? (
|
||||||
|
|
Loading…
Reference in New Issue