From 753b24e242a66524a81334dbd2653689d3d80d2d Mon Sep 17 00:00:00 2001 From: Guy Arad Date: Sun, 6 May 2018 22:40:21 +0300 Subject: [PATCH] resolution for the read-only bug --- modules/ui/raw_tag_editor.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/ui/raw_tag_editor.js b/modules/ui/raw_tag_editor.js index 4ec326fc2..77dab2e18 100644 --- a/modules/ui/raw_tag_editor.js +++ b/modules/ui/raw_tag_editor.js @@ -207,7 +207,8 @@ export function uiRawTagEditor(context) { function bindTypeahead(key, value) { - if (isReadOnly({ key: key })) return; + if (isReadOnly(key.datum())) return; + var geometry = context.geometry(_entityID); key.call(d3_combobox()