diff --git a/admin-dev/themes/default/template/helpers/tree/tree_toolbar_search.tpl b/admin-dev/themes/default/template/helpers/tree/tree_toolbar_search.tpl index e1cb526fb..8d6e1e078 100644 --- a/admin-dev/themes/default/template/helpers/tree/tree_toolbar_search.tpl +++ b/admin-dev/themes/default/template/helpers/tree/tree_toolbar_search.tpl @@ -45,6 +45,12 @@ valueKey: 'name', local: [{$typeahead_source}] }); + + $("#{$id}").keypress(function( event ) { + if ( event.which == 13 ) { + event.stopPropagation(); + } + }); } );