Skip to content

Commit

Permalink
Merge pull request #371 from bento-platform/fix-data-type-labels-2
Browse files Browse the repository at this point in the history
fix: yielding data type labels and bump version to 2.16.1
  • Loading branch information
brouillette committed Dec 19, 2022
2 parents e86055b + 90c79ea commit 9b4c6d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chord_metadata_service/chord/views_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
@permission_classes([AllowAny])
def data_type_list(_request):
return Response(sorted(
({"id": k, "schema": dt["schema"]} for k, dt in DATA_TYPES.items()),
({"id": k, "label": dt["label"], "schema": dt["schema"]} for k, dt in DATA_TYPES.items()),
key=lambda dt: dt["id"]
))

Expand Down
2 changes: 1 addition & 1 deletion chord_metadata_service/package.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[package]
name = katsu
version = 2.16.0
version = 2.16.1
authors = Ksenia Zaytseva, David Lougheed, Simon Chénard, Romain Grégoire, Paul Pillot, Son Chau

0 comments on commit 9b4c6d6

Please sign in to comment.