mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-24 17:14:04 +02:00
Fix critical issue with editing Bike Lanes and Allowed Access fields
This commit is contained in:
@@ -66,7 +66,7 @@ export function uiFieldAccess(field, context) {
|
||||
}
|
||||
|
||||
|
||||
function change(d) {
|
||||
function change(d3_event, d) {
|
||||
var tag = {};
|
||||
var value = context.cleanTagValue(utilGetSetValue(d3_select(this)));
|
||||
|
||||
|
||||
@@ -74,7 +74,7 @@ export function uiFieldCycleway(field, context) {
|
||||
}
|
||||
|
||||
|
||||
function change(key) {
|
||||
function change(d3_event, key) {
|
||||
|
||||
var newValue = context.cleanTagValue(utilGetSetValue(d3_select(this)));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user