diff --git a/webadmin/src/js/index.js b/webadmin/src/js/index.js index da7c9288d..633c64d0d 100644 --- a/webadmin/src/js/index.js +++ b/webadmin/src/js/index.js @@ -407,7 +407,7 @@ app.directive('tagInput', function () { }); element.bind('keyup', function (e) { var key = e.which; - if (key === 9 || key === 13 || key === 188) { + if (key === 9 || key === 13 || key === 32 || key === 188) { e.preventDefault(); return $scope.$apply('addTag()'); }