We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bf9427 commit 6defe87Copy full SHA for 6defe87
packages/jupyterlab-lsp/src/components/utils.tsx
@@ -65,7 +65,11 @@ export function DocumentLocator(props: {
65
let target: HTMLElement = null;
66
if (adapter.has_multiple_editors) {
67
let first_line = document.virtual_lines.get(0);
68
- target = adapter.get_editor_wrapper(first_line.editor);
+ if (first_line) {
69
+ target = adapter.get_editor_wrapper(first_line.editor);
70
+ } else {
71
+ console.warn('Could not get first line of ', document);
72
+ }
73
}
74
let breadcrumbs = get_breadcrumbs(document, adapter);
75
return (
0 commit comments