From 57687b51debcd2667faab9188abbc35480e2030e Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Sat, 18 Jan 2020 11:45:20 -0500 Subject: [PATCH] Correct `board_type` field type from `typeCombo` to `combo` (close #7265) --- data/presets/fields.json | 2 +- data/presets/fields/board_type.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/presets/fields.json b/data/presets/fields.json index 863bcfdf6..47caac3a2 100644 --- a/data/presets/fields.json +++ b/data/presets/fields.json @@ -43,7 +43,7 @@ "bin": {"key": "bin", "type": "check", "label": "Waste Bin", "terms": ["garbage can", "trash can"]}, "blind": {"key": "blind", "type": "radio", "strings": {"options": {"yes": "Yes", "limited": "Limited", "no": "No"}}, "label": "Blind Person Access", "terms": ["sight impairment", "vision impairment"]}, "blood_components": {"key": "blood:", "type": "multiCombo", "label": "Blood Components", "strings": {"options": {"whole": "whole blood", "plasma": "plasma", "platelets": "platelets", "stemcells": "stem cell samples"}}}, - "board_type": {"key": "board_type", "type": "typeCombo", "label": "Type"}, + "board_type": {"key": "board_type", "type": "combo", "label": "Type"}, "bollard": {"key": "bollard", "type": "combo", "label": "Type"}, "booth": {"key": "booth", "type": "combo", "label": "Booth", "caseSensitive": true}, "bottle": {"key": "bottle", "type": "check", "label": "Bottle Filling"}, diff --git a/data/presets/fields/board_type.json b/data/presets/fields/board_type.json index f54b6b484..a23ef0785 100644 --- a/data/presets/fields/board_type.json +++ b/data/presets/fields/board_type.json @@ -1,5 +1,5 @@ { "key": "board_type", - "type": "typeCombo", + "type": "combo", "label": "Type" }