coder-config 0.41.21 → 0.41.23
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/lib/constants.js +1 -1
- package/package.json +1 -1
- package/ui/routes/configs.js +3 -1
package/lib/constants.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coder-config",
|
|
3
|
-
"version": "0.41.
|
|
3
|
+
"version": "0.41.23",
|
|
4
4
|
"description": "Configuration manager for AI coding tools - Claude Code, Gemini CLI, Codex CLI, Antigravity. Manage MCPs, rules, permissions, memory, and workstreams.",
|
|
5
5
|
"author": "regression.io",
|
|
6
6
|
"main": "config-loader.js",
|
package/ui/routes/configs.js
CHANGED
|
@@ -22,7 +22,9 @@ function getConfigs(manager, projectDir) {
|
|
|
22
22
|
* Returns MCPs that are enabled by parent configs but not by this level
|
|
23
23
|
*/
|
|
24
24
|
function getInheritedMcps(manager, projectDir, configDir) {
|
|
25
|
-
|
|
25
|
+
// Use configDir (the directory being edited) to find the hierarchy,
|
|
26
|
+
// not projectDir (the UI's active project)
|
|
27
|
+
const configs = manager.findAllConfigs(configDir);
|
|
26
28
|
const homeDir = process.env.HOME || '';
|
|
27
29
|
|
|
28
30
|
// Find the index of the current config in the hierarchy
|