From 6942faa45582c95829564d415c1e476a35a00201 Mon Sep 17 00:00:00 2001 From: Sal Tijerina Date: Mon, 20 May 2024 17:13:27 -0500 Subject: [PATCH] fix app variant href --- designsafe/apps/workspace/models/app_entries.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/designsafe/apps/workspace/models/app_entries.py b/designsafe/apps/workspace/models/app_entries.py index 0e15c02051..27e6859ec7 100644 --- a/designsafe/apps/workspace/models/app_entries.py +++ b/designsafe/apps/workspace/models/app_entries.py @@ -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