mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: Use site settings for min_search_term_length.
This commit is contained in:
@@ -5,7 +5,7 @@ export default Ember.View.extend({
|
||||
templateName: 'search',
|
||||
keyDown: function(e){
|
||||
var term = this.get('controller.term');
|
||||
if (e.which === 13 && term && term.length > 2) {
|
||||
if (e.which === 13 && term && term.length >= Discourse.SiteSettings.min_search_term_length) {
|
||||
this.get('controller').send('fullSearch');
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user