diff --git a/pandora/item/models.py b/pandora/item/models.py index 3e6ca171b..4c2fb18f4 100644 --- a/pandora/item/models.py +++ b/pandora/item/models.py @@ -1009,7 +1009,7 @@ class Item(models.Model): def update_layer_facet(self, key): current_values = [a['value'] for a in self.annotations.filter(layer=key).distinct().values('value')] - current_values = [ox.decode_html(ox.strip_tags(v)) for v in current_values] + current_values = [ox.decode_html(ox.strip_tags(v.replace('
', ' '))) for v in current_values] saved_values = [i.value for i in Facet.objects.filter(item=self, key=key)] removed_values = filter(lambda i: i not in current_values, saved_values) if removed_values: