We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7460abb commit 1707756Copy full SHA for 1707756
2 files changed
config/config.example.yml
@@ -187,6 +187,8 @@ submission:
187
metadataDetailsList:
188
- label: 'Document type'
189
name: dc.type
190
+ # Minimum number of characters required before performing a lookup.
191
+ minChars: 3
192
193
# Default Language in which the UI will be rendered if the user's browser language is not an active language
194
defaultLanguage: en
src/config/default-app-config.ts
@@ -294,6 +294,7 @@ export class DefaultAppConfig implements AppConfig {
294
// NOTE: list of metadata fields for which the dropdown hint is enabled
295
// eg. 'dc.access.rights': true,
296
},
297
+ // Minimum number of characters required before performing a lookup.
298
minChars: 3,
299
};
300
0 commit comments