add "unleashed" as value for dog tag field

and limit offered values of `dog` field on dog-specific features to just =leashed`/`unleashed`: `no` does generally not make sense on these, and `yes`/`designated` is already implied by the primary tag.
This commit is contained in:
Martin Raifer
2024-02-02 11:46:27 +01:00
parent f916c7be39
commit 54205c7a29
5 changed files with 19 additions and 2 deletions
+1
View File
@@ -6,6 +6,7 @@
"options": {
"yes": "Allowed",
"leashed": "Leashed Only",
"unleashed": "Leashes Not Required",
"no": "Not Allowed"
}
},
+12
View File
@@ -0,0 +1,12 @@
{
"key": "dog",
"type": "combo",
"label": "{dog}",
"options": [
"leashed",
"unleashed"
],
"stringsCrossReference": "{dog}",
"autoSuggestions": false,
"customValues": false
}