Skip to content

Commit

Permalink
Remove grid sharing component, fix python linting in visualization se…
Browse files Browse the repository at this point in the history
…rvices
  • Loading branch information
guerler committed Oct 25, 2023
1 parent 0d18b79 commit 1fc9086
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 48 deletions.
45 changes: 0 additions & 45 deletions client/src/components/Grid/GridElements/GridSharing.vue

This file was deleted.

4 changes: 1 addition & 3 deletions lib/galaxy/webapps/galaxy/services/visualizations.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,7 @@ def index(
results = []
for content in entries:
view = "detailed" if detailed else "summary"
serialized_content = self.serializer.serialize_to_view(
content, user=trans.user, trans=trans, view=view
)
serialized_content = self.serializer.serialize_to_view(content, user=trans.user, trans=trans, view=view)
if detailed and content.deleted is False:
sharing_dict = self.shareable_service.sharing(trans, content.id)
serialized_content["sharing_status"] = sharing_dict
Expand Down

0 comments on commit 1fc9086

Please sign in to comment.