Skip to content

Commit

Permalink
fix app variant href
Browse files Browse the repository at this point in the history
  • Loading branch information
rstijerina committed May 20, 2024
1 parent 03aa2c0 commit 6942faa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion designsafe/apps/workspace/models/app_entries.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ class AppVariant(models.Model):
@property
def href(self):
"""Retrieve the app's URL in the Tools & Applications space"""
app_href = f"/rw/workspace/applications/{self.app_id}"
app_href = f"/rw/workspace/{self.app_id}"
if self.version:
app_href += f"?version={self.version}"
return app_href
Expand Down

0 comments on commit 6942faa

Please sign in to comment.