(cellId: CellId)
| 137 | |
| 138 | // Highlight the variable in the cell editor |
| 139 | const highlightInCell = (cellId: CellId) => { |
| 140 | const editorView = getCellEditorView(cellId); |
| 141 | if (editorView) { |
| 142 | goToVariableDefinition(editorView, name); |
| 143 | } |
| 144 | }; |
| 145 | |
| 146 | return ( |
| 147 | <div className="flex flex-col gap-1 py-1"> |
no test coverage detected
searching dependent graphs…