mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-23 16:49:40 +02:00
Add caseSensitive option for combofields, use for source=*
(closes #4558)
This commit is contained in:
@@ -37,8 +37,10 @@ export function uiFieldCombo(field, context) {
|
||||
optstrings = field.strings && field.strings.options,
|
||||
optarray = field.options,
|
||||
snake_case = (field.snake_case || (field.snake_case === undefined)),
|
||||
caseSensitive = field.caseSensitive,
|
||||
combobox = d3_combobox()
|
||||
.container(context.container())
|
||||
.caseSensitive(caseSensitive)
|
||||
.minItems(isMulti || isSemi ? 1 : 2),
|
||||
comboData = [],
|
||||
multiData = [],
|
||||
|
||||
Reference in New Issue
Block a user