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 628df6f commit 5ca60d2Copy full SHA for 5ca60d2
src/packages/frontend/project/directory-selector.tsx
@@ -96,6 +96,7 @@ export default function DirectorySelector({
96
97
const toggleSelection = useCallback(
98
(path: string) => {
99
+ console.log("toggleSelection", { path });
100
let x;
101
if (multi) {
102
if (selectedPaths.has(path)) {
@@ -475,7 +476,7 @@ function CreateDirectory({
475
476
const actions = redux.getProjectActions(project_id);
477
const fs = actions.fs(computeServerId);
478
await fs.mkdir(join(path, value));
- toggleSelection(value);
479
+ toggleSelection(join(path, value));
480
} catch (err) {
481
setError(`${err}`);
482
} finally {
0 commit comments