feat(jotform/auth): show default API URL

This commit is contained in:
Ali BARIN
2024-08-14 14:13:04 +00:00
parent 7506bf186b
commit ec740c07fa

View File

@@ -4,14 +4,13 @@ import isStillVerified from './is-still-verified.js';
export default { export default {
fields: [ fields: [
{ {
key: 'instanceUrl', key: 'apiUrl',
label: 'Jotform instance URL', label: 'API URL',
type: 'string', type: 'string',
required: false, required: false,
readOnly: false, readOnly: false,
value: null, value: 'https://api.jotform.com',
placeholder: 'https://${subdomain}.jotform.com', placeholder: 'https://${subdomain}.jotform.com/api',
description: 'If you have an enterprise plan, you can use your api url.',
clickToCopy: true, clickToCopy: true,
}, },
{ {
@@ -22,7 +21,6 @@ export default {
readOnly: false, readOnly: false,
value: null, value: null,
placeholder: null, placeholder: null,
description: 'Jotform API key of your account.',
clickToCopy: false, clickToCopy: false,
}, },
], ],