Skip to content

Commit 38cc8ac

Browse files
authored
Update router.tsx (#8765)
Fix an invalid frontend route. ### URL of deployed dev instance (used for testing): - https://___.webknossos.xyz ### Issues: - fixes # ------ (Please delete unneeded items, merge only when none are left open) - [ ] Added changelog entry (create a `$PR_NUMBER.md` file in `unreleased_changes` or use `./tools/create-changelog-entry.py`) - [ ] Added migration guide entry if applicable (edit the same file as for the changelog) - [ ] Updated [documentation](../blob/master/docs) if applicable - [ ] Adapted [wk-libs python client](https://github.com/scalableminds/webknossos-libs/tree/master/webknossos/webknossos/client) if relevant API parts change - [ ] Removed dev-only changes like prints and application.conf edits - [ ] Considered [common edge cases](../blob/master/.github/common_edge_cases.md) - [ ] Needs datastore update after deployment
1 parent dd8c34c commit 38cc8ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/javascripts/router.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ class ReactRouter extends React.Component<Props> {
166166
organizationId,
167167
getParams.token,
168168
);
169-
return `/datasets/${datasetName}-${datasetId}/sandbox/:${tracingType}${location.search}${location.hash}`;
169+
return `/datasets/${datasetName}-${datasetId}/sandbox/${tracingType}${location.search}${location.hash}`;
170170
}}
171171
/>
172172
);

0 commit comments

Comments
 (0)