Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski committed May 26, 2024
1 parent 66aa665 commit 0052b99
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/jupyterlab-lsp/src/edits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,10 @@ export class EditApplicator {
if (!editor) {
throw Error('Editor is not accessible');
}
if (editor.host.closest('.jp-MarkdownCell') || editor.host.closest('.jp-RawCell')) {
if (
editor.host.closest('.jp-MarkdownCell') ||
editor.host.closest('.jp-RawCell')
) {
// Workaround for https://github.com/jupyter-lsp/jupyterlab-lsp/issues/1008
// and for https://github.com/jupyter-lsp/jupyterlab-lsp/issues/1084
// briefly, the rewrite for JupyterLab 4.0 added Markdown cell support, but they
Expand Down

0 comments on commit 0052b99

Please sign in to comment.