mirror of
https://github.com/umap-project/umap.git
synced 2025-04-28 19:42:36 +02:00
fix: remoteData helpEntries were not on the right format
Should be now an array (not guessing anymore).
This commit is contained in:
parent
0a1d98b146
commit
c2833987b7
1 changed files with 3 additions and 3 deletions
|
@ -716,7 +716,7 @@ export class DataLayer {
|
|||
const remoteDataFields = [
|
||||
[
|
||||
'options.remoteData.url',
|
||||
{ handler: 'Url', label: translate('Url'), helpEntries: 'formatURL' },
|
||||
{ handler: 'Url', label: translate('Url'), helpEntries: ['formatURL'] },
|
||||
],
|
||||
[
|
||||
'options.remoteData.format',
|
||||
|
@ -729,7 +729,7 @@ export class DataLayer {
|
|||
{
|
||||
handler: 'Switch',
|
||||
label: translate('Dynamic'),
|
||||
helpEntries: 'dynamicRemoteData',
|
||||
helpEntries: ['dynamicRemoteData'],
|
||||
},
|
||||
],
|
||||
[
|
||||
|
@ -746,7 +746,7 @@ export class DataLayer {
|
|||
{
|
||||
handler: 'Switch',
|
||||
label: translate('Proxy request'),
|
||||
helpEntries: 'proxyRemoteData',
|
||||
helpEntries: ['proxyRemoteData'],
|
||||
},
|
||||
])
|
||||
remoteDataFields.push('options.remoteData.ttl')
|
||||
|
|
Loading…
Reference in a new issue