include project ID in the URLs to the project-details page

This commit is contained in:
2023-11-26 18:42:28 -07:00
parent 889b6d5737
commit 6957678474
4 changed files with 4 additions and 4 deletions

View File

@@ -376,7 +376,7 @@ export default class DiscoverView extends Vue {
onClickLoadProject(id: string) {
localStorage.setItem("projectId", id);
const route = {
name: "project",
path: "/project/" + encodeURIComponent(id),
};
this.$router.push(route);
}