From cbd4c55ced7667e9af6df080c7b81e1fc1f8829b Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Wed, 13 Jul 2016 21:03:36 +0200 Subject: [PATCH] Fix variable name. --- framework/Core/js/prettyautocomplete.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/Core/js/prettyautocomplete.js b/framework/Core/js/prettyautocomplete.js index 653e7e80a7e..e13f6afd0e7 100644 --- a/framework/Core/js/prettyautocomplete.js +++ b/framework/Core/js/prettyautocomplete.js @@ -219,7 +219,7 @@ var PrettyAutocompleter = Class.create({ updateSelectedItems: function() { - this.selecteItems = []; + this.selectedItems = []; this.currentValues().each(function(item) { this.selectedItems.push( { rawValue: item }); }.bind(this));