Skip to content

Commit

Permalink
Updated versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ramonski committed Jan 5, 2022
1 parent 03dc877 commit 2b723c1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 1 addition & 2 deletions docs/Changelog.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
1.1.0 (unreleased)
1.1.0 (2022-01-05)
------------------

- #22 Support datetime objects in date converter
Expand All @@ -13,7 +13,6 @@
- #10 Fix Traceback for Dexterity Types



1.0.0 (2020-09-22)
------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
zip_safe=False,
install_requires=[
"plone.app.dexterity",
"senaite.core>=2.0.0rc3",
"senaite.lims>=2.0.0",
"setuptools",
],
extras_require={
Expand Down
3 changes: 3 additions & 0 deletions src/senaite/databox/browser/view.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,9 @@ def get_columns(self):

for num, record in enumerate(self.databox.columns):
key, column = record.items()[0]
# databox columns are not sortable by the catalog, even not manual,
# because the real values are dereferenced in `folderitem`.
column["sortable"] = False
columns[str(num)] = column

return columns
Expand Down

0 comments on commit 2b723c1

Please sign in to comment.