Skip to content

Commit

Permalink
Fixes issue #351, where the reordering of list-items was not reflecte…
Browse files Browse the repository at this point in the history
…d in the DOM.
  • Loading branch information
href committed Nov 18, 2013
1 parent 54984e1 commit e92cb9c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/collective/cover/tiles/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,10 @@ def results(self):
:returns: a list of objects.
"""
self.set_limit()
uuids = self.data.get('uuids', None)

# always get the latest data
uuids = ITileDataManager(self).get().get('uuids', None)

result = []
if uuids:
uuids = [uuids] if type(uuids) == str else uuids
Expand Down

0 comments on commit e92cb9c

Please sign in to comment.