mark fields as non editable

This commit is contained in:
Riccardo Balbo 2024-10-22 10:51:33 +02:00
parent d45cf99dd4
commit 63c2a7f270
1 changed files with 6 additions and 4 deletions

View File

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