@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/server/index.js +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@siteboon/claude-code-ui",
3
- "version": "1.13.4",
3
+ "version": "1.13.5",
4
4
  "description": "A web-based UI for Claude Code CLI",
5
5
  "type": "module",
6
6
  "main": "server/index.js",
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) {