mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-16 05:49:16 +02:00
Standard camel case for defaultCheck field (not used anywhere)
This commit is contained in:
@@ -114,7 +114,7 @@ The complete JSON schema for fields can be found in [`data/presets/schema/field.
|
||||
|
||||
**Checkboxes**
|
||||
* `check` - 3-state checkbox: `yes`, `no`, unknown (no tag)
|
||||
* `defaultcheck` - 2-state checkbox where checked produces `yes` and unchecked produces no tag
|
||||
* `defaultCheck` - 2-state checkbox where checked produces `yes` and unchecked produces no tag
|
||||
|
||||
**Radio Buttons**
|
||||
* `radio` - Multiple choice radio button field
|
||||
|
||||
@@ -53,7 +53,7 @@
|
||||
"check",
|
||||
"combo",
|
||||
"cycleway",
|
||||
"defaultcheck",
|
||||
"defaultCheck",
|
||||
"email",
|
||||
"lanes",
|
||||
"localized",
|
||||
|
||||
@@ -3,7 +3,7 @@ import { utilRebind } from '../../util/rebind';
|
||||
import { t } from '../../util/locale';
|
||||
import { osmOneWayTags } from '../../osm/index';
|
||||
|
||||
export { uiFieldCheck as uiFieldDefaultcheck };
|
||||
export { uiFieldCheck as uiFieldDefaultCheck };
|
||||
|
||||
|
||||
export function uiFieldCheck(field) {
|
||||
|
||||
@@ -14,7 +14,7 @@ export * from './wikipedia';
|
||||
|
||||
import {
|
||||
uiFieldCheck,
|
||||
uiFieldDefaultcheck
|
||||
uiFieldDefaultCheck
|
||||
} from './check';
|
||||
|
||||
import {
|
||||
@@ -47,7 +47,7 @@ export var uiFields = {
|
||||
access: uiFieldAccess,
|
||||
address: uiFieldAddress,
|
||||
check: uiFieldCheck,
|
||||
defaultcheck: uiFieldDefaultcheck,
|
||||
defaultCheck: uiFieldDefaultCheck,
|
||||
combo: uiFieldCombo,
|
||||
typeCombo: uiFieldTypeCombo,
|
||||
multiCombo: uiFieldMultiCombo,
|
||||
|
||||
Reference in New Issue
Block a user