diff --git a/js/id/ui/preset/restrictions.js b/js/id/ui/preset/restrictions.js index ef31b77aa..ae7ec22ef 100644 --- a/js/id/ui/preset/restrictions.js +++ b/js/id/ui/preset/restrictions.js @@ -119,7 +119,9 @@ iD.ui.preset.restrictions = function(field, context) { } function render() { - restrictions(selection); + if (context.hasEntity(vertexID)) { + restrictions(selection); + } } }