We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34acce3 commit c46c100Copy full SHA for c46c100
src/packages/frontend/project/explorer/misc-side-buttons.tsx
@@ -150,7 +150,7 @@ export const MiscSideButtons: React.FC<Props> = (props) => {
150
const base = serverURL(project_id, "jupyterlab");
151
// we make sure the url ends wiht a slash, without messing up the full URL
152
const s = base.slice(base.length - 1) === "/" ? "" : "/";
153
- const url = `${base}${s}lab/tree/${current_path ?? ""}`;
+ const url = `${base}${s}${current_path ? "lab/tree/" + current_path : ""}`;
154
return (
155
<LinkRetry href={url} mode="button">
156
<Tip
0 commit comments