@siteboon/claude-code-ui 1.13.4 → 1.13.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/server/index.js +3 -3
package/package.json
CHANGED
package/server/index.js
CHANGED
|
@@ -462,7 +462,7 @@ app.post('/api/projects/create', authenticateToken, async (req, res) => {
|
|
|
462
462
|
});
|
|
463
463
|
|
|
464
464
|
// Browse filesystem endpoint for project suggestions - uses existing getFileTree
|
|
465
|
-
app.get('/api/browse-filesystem', authenticateToken, async (req, res) => {
|
|
465
|
+
app.get('/api/browse-filesystem', authenticateToken, async (req, res) => {
|
|
466
466
|
try {
|
|
467
467
|
const { path: dirPath } = req.query;
|
|
468
468
|
|
|
@@ -510,9 +510,9 @@ app.get('/api/browse-filesystem', authenticateToken, async (req, res) => {
|
|
|
510
510
|
suggestions.push(...directories);
|
|
511
511
|
}
|
|
512
512
|
|
|
513
|
-
res.json({
|
|
513
|
+
res.json({
|
|
514
514
|
path: targetPath,
|
|
515
|
-
suggestions: suggestions
|
|
515
|
+
suggestions: suggestions
|
|
516
516
|
});
|
|
517
517
|
|
|
518
518
|
} catch (error) {
|