From 03436e846d3353076146838c891a56e8f4a56145 Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Tue, 25 May 2010 15:26:28 +0200 Subject: [PATCH] Need to compare the raw value. --- horde/js/prettyautocomplete.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/horde/js/prettyautocomplete.js b/horde/js/prettyautocomplete.js index a18b16674..f1a3a05d3 100644 --- a/horde/js/prettyautocomplete.js +++ b/horde/js/prettyautocomplete.js @@ -263,7 +263,7 @@ var PrettyAutocompleter = Class.create({ _filterChoices: function(c) { this.selectedItems.each(function(item) { - c = c.without(item.displayValue); + c = c.without(item.rawValue); }); return c; }, -- 2.11.0