diff --git a/zephyr/static/js/search.js b/zephyr/static/js/search.js index 7d834a9843..3afb53d61c 100644 --- a/zephyr/static/js/search.js +++ b/zephyr/static/js/search.js @@ -332,12 +332,6 @@ function get_topic_suggestions(query_operators) { if (guess !== '') { topics = $.grep(topics, function (topic) { - // Don't suggest a topic if the user has already typed out - // the full topic name. - var redundant = topic.toLowerCase() === guess.toLowerCase(); - if (redundant) { - return false; - } return phrase_match(topic, guess); }); }