activate new access values (#8876)

This commit is contained in:
Martin Raifer
2022-01-25 20:41:23 +01:00
committed by GitHub
parent 97ed56bc3a
commit 765e8e3448
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -74,6 +74,7 @@ _Breaking developer changes, which may affect downstream projects or sites that
#### :rocket: Presets
* Radio-button based presets fields can be in an non-unique state (e.g. a tunnel which is also a ford) this is now rendered like a multi selection with conflicting states ([#8796])
* Add colours for preset categories ([#8799])
* Activate new access values (`customers` and `unknown`) introduced in `id-tagging-schema` v3.2 ([#8876])
#### :hammer: Development
* switch test runner to [karma](https://karma-runner.github.io/) ([#8764], thanks [@wvanderp])
@@ -98,6 +99,7 @@ _Breaking developer changes, which may affect downstream projects or sites that
[#8835]: https://github.com/openstreetmap/iD/pull/8835
[#8836]: https://github.com/openstreetmap/iD/issues/8836
[#8839]: https://github.com/openstreetmap/iD/pull/8839
[#8876]: https://github.com/openstreetmap/iD/pull/8876
[@k-yle]: https://github.com/k-yle
[@tpetillon]: https://github.com/tpetillon
[@mbrzakovic]: https://github.com/mbrzakovic
+1 -1
View File
@@ -79,7 +79,7 @@ export function uiFieldAccess(field, context) {
access.options = function(type) {
var options = ['no', 'permissive', 'private', 'permit', 'destination'];
var options = ['no', 'permissive', 'private', 'permit', 'destination', 'customers', 'unknown'];
if (type !== 'access') {
options.unshift('yes');