diff --git a/js/id/modes/select.js b/js/id/modes/select.js index c81a6fb62..256652143 100644 --- a/js/id/modes/select.js +++ b/js/id/modes/select.js @@ -104,10 +104,8 @@ iD.modes.Select = function(context, selectedIDs) { }), true)); } - if (singular()) { - context.ui().sidebar - .select(singular().id, newFeature); - } + context.ui().sidebar + .select(singular() ? singular().id : null, newFeature); context.history() .on('undone.select', update)