From 5dd00deac3b9c06a680673756eca43f78ac86dc8 Mon Sep 17 00:00:00 2001 From: fuwasegu Date: Fri, 12 Dec 2025 13:10:53 +0900 Subject: [PATCH] fix --- exocortex/__init__.py | 2 +- exocortex/dashboard/static/app.js | 7 ++++++- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/exocortex/__init__.py b/exocortex/__init__.py index 61c536f..1179cf4 100644 --- a/exocortex/__init__.py +++ b/exocortex/__init__.py @@ -4,4 +4,4 @@ storing and retrieving development insights across projects. """ -__version__ = "0.9.0" +__version__ = "0.9.1" diff --git a/exocortex/dashboard/static/app.js b/exocortex/dashboard/static/app.js index f00a6a5..1effa51 100644 --- a/exocortex/dashboard/static/app.js +++ b/exocortex/dashboard/static/app.js @@ -361,7 +361,12 @@ const TYPE_COLORS = { }; function renderGraph() { - const container = elements.graphNetwork; + const container = document.getElementById('graph-network'); + if (!container) { + console.warn('Graph container not found'); + return; + } + const { nodes, edges } = state.graph; if (nodes.length === 0) { diff --git a/pyproject.toml b/pyproject.toml index 5776a53..f99965a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "exocortex" -version = "0.9.0" +version = "0.9.1" description = "Local MCP Server acting as your external brain for development insights." readme = "README.md" requires-python = ">=3.10"