mark fields as non editable
This commit is contained in:
parent
d45cf99dd4
commit
63c2a7f270
|
@ -14,7 +14,8 @@ export const fields = [
|
||||||
help: `you can get an API key from [Blink Dashboard](${galoyBlinkDashboardUrl}).\nPlease make sure to select ONLY the 'Read' and 'Write' scopes when generating this API key.`,
|
help: `you can get an API key from [Blink Dashboard](${galoyBlinkDashboardUrl}).\nPlease make sure to select ONLY the 'Read' and 'Write' scopes when generating this API key.`,
|
||||||
placeholder: 'blink_...',
|
placeholder: 'blink_...',
|
||||||
optional: 'for sending',
|
optional: 'for sending',
|
||||||
clientOnly: true
|
clientOnly: true,
|
||||||
|
editable: false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'currency',
|
name: 'currency',
|
||||||
|
@ -25,8 +26,8 @@ export const fields = [
|
||||||
clear: true,
|
clear: true,
|
||||||
autoComplete: 'off',
|
autoComplete: 'off',
|
||||||
optional: 'for sending',
|
optional: 'for sending',
|
||||||
clientOnly: true
|
clientOnly: true,
|
||||||
|
editable: false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'apiKeyRecv',
|
name: 'apiKeyRecv',
|
||||||
|
@ -35,7 +36,8 @@ export const fields = [
|
||||||
help: `you can get an API key from [Blink Dashboard](${galoyBlinkDashboardUrl}).\nPlease make sure to select ONLY the 'Read' and 'Receive' scopes when generating this API key.`,
|
help: `you can get an API key from [Blink Dashboard](${galoyBlinkDashboardUrl}).\nPlease make sure to select ONLY the 'Read' and 'Receive' scopes when generating this API key.`,
|
||||||
placeholder: 'blink_...',
|
placeholder: 'blink_...',
|
||||||
optional: 'for receiving',
|
optional: 'for receiving',
|
||||||
serverOnly: true
|
serverOnly: true,
|
||||||
|
editable: false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'currencyRecv',
|
name: 'currencyRecv',
|
||||||
|
|
Loading…
Reference in New Issue