MCPcopy Create free account
hub / github.com/algorithmicsuperintelligence/openevolve / selectListNodeById

Function selectListNodeById

scripts/static/js/list.js:175–185  ·  view source on GitHub ↗
(id)

Source from the content-addressed store, hash-verified

173 }
174}
175export function selectListNodeById(id) {
176 setSelectedProgramId(id);
177 renderNodeList(allNodeData);
178 const node = allNodeData.find(n => n.id == id);
179 if (node) {
180 window._lastSelectedNodeData = node;
181 setSidebarSticky(true);
182 showSidebarContent(node, false);
183 showSidebarListView();
184 }
185}
186
187// List search/sort events
188if (document.getElementById('list-search')) {

Callers 3

renderGraphFunction · 0.90
updatePerformanceGraphFunction · 0.90
list.jsFile · 0.85

Calls 5

setSelectedProgramIdFunction · 0.90
setSidebarStickyFunction · 0.90
showSidebarContentFunction · 0.90
renderNodeListFunction · 0.85
showSidebarListViewFunction · 0.85

Tested by

no test coverage detected