From ec950408e1e789ad9fb8c2b047b218a0ef98bd96 Mon Sep 17 00:00:00 2001 From: bombstable <3259357+bompstable@users.noreply.github.com> Date: Thu, 30 May 2024 09:25:39 +0100 Subject: [PATCH] Simplify selection of armrests with guidance text Use labelled values in a checkbox to instead of the more complicated combo. openstreetmap/id-tagging-schema#1226 --- data/fields/armrest.json | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/data/fields/armrest.json b/data/fields/armrest.json index 3714d59a1..aa2fbe3a7 100644 --- a/data/fields/armrest.json +++ b/data/fields/armrest.json @@ -1,13 +1,12 @@ { "key": "armrest", - "type": "combo", + "type": "check", "label": "Armrests", - "placeholder": "No armrests, One or more armrests...", "strings": { "options": { - "no": "No armrests", - "yes": "One or more armrests" + "undefined": "Unknown", + "yes": "One or more armrests", + "no": "No armrests" } - }, - "customValues": false + } }