File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
packages/jupyterlab-lsp/src/adapters Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 3
3
### ` @krassowski/jupyterlab-lsp 3.8.1 ` (unreleased)
4
4
5
5
- bug fixes:
6
- - remove spurious ` ValidationError ` warnings for non-installed servers ([ ( #645 )] , thanks @karlaspuldaro )
7
- - ` %Rdevice ` magic is now properly overridden and won't be extracted to R code ([ ( #646 )] )
8
- - Fix hover rendering for MarkedStrings, fix hover disappearing when moving mouse towards it ([ ( #653 )] )
6
+ - remove spurious ` ValidationError ` warnings for non-installed servers ([ #645 )] , thanks @karlaspuldaro )
7
+ - ` %Rdevice ` magic is now properly overridden and won't be extracted to R code ([ #646 )] )
8
+ - Fix hover rendering for MarkedStrings, fix hover disappearing when moving mouse towards it ([ #653 )] )
9
9
10
10
[ #645 ] : https://github.com/krassowski/jupyterlab-lsp/pull/645
11
11
[ #646 ] : https://github.com/krassowski/jupyterlab-lsp/pull/646
Original file line number Diff line number Diff line change @@ -283,6 +283,7 @@ export abstract class WidgetAdapter<T extends IDocumentWidget> {
283
283
// while already reverted in https://github.com/jupyterlab/jupyterlab/pull/10741,
284
284
// it was not released yet and many users will continue to run 3.1.0 and 3.1.1
285
285
// so lets workaround it for now
286
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
286
287
// @ts -ignore
287
288
const completedManually = state === 'completed manually' ;
288
289
You can’t perform that action at this time.
0 commit comments