bug fix: 'allColumns' must be a list in the correct order
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@3175 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
parent
2f438803c3
commit
3c9c3b23b0
1 changed files with 2 additions and 2 deletions
|
@ -150,8 +150,8 @@ class WorkItemView(BaseTrackView):
|
|||
|
||||
class BaseWorkItemsView(object):
|
||||
|
||||
allColumns = set(['Task', 'User', 'Title', 'Start', 'End', 'Duration', 'Info'])
|
||||
columns = allColumns
|
||||
allColumns = ['Day', 'Start', 'End', 'Duration', 'Task', 'User', 'Title', 'Info']
|
||||
columns = set(allColumns)
|
||||
detailsFactory = WorkItemDetails
|
||||
|
||||
lastMonth = lastDay = None
|
||||
|
|
Loading…
Add table
Reference in a new issue