Skip to content
Merged

fix #22

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exocortex/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
storing and retrieving development insights across projects.
"""

__version__ = "0.9.0"
__version__ = "0.9.1"
7 changes: 6 additions & 1 deletion exocortex/dashboard/static/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down