💄 renames

This commit is contained in:
Johannes Rieken
2021-04-26 15:19:55 +02:00
parent 42754baf3a
commit 8fac153517
7 changed files with 13 additions and 13 deletions

View File

@@ -128,7 +128,7 @@ export class MainThreadNotebookKernels implements MainThreadNotebookKernelsShape
if (!editor.hasModel()) {
return;
}
const { bound: kernel } = this._notebookKernelService.getNotebookKernels(editor.viewModel.notebookDocument);
const { selected: kernel } = this._notebookKernelService.getNotebookKernels(editor.viewModel.notebookDocument);
if (!kernel) {
return;
}
@@ -158,7 +158,7 @@ export class MainThreadNotebookKernels implements MainThreadNotebookKernelsShape
if (!editor.hasModel()) {
continue;
}
if (this._notebookKernelService.getNotebookKernels(editor.viewModel.notebookDocument).bound !== kernel) {
if (this._notebookKernelService.getNotebookKernels(editor.viewModel.notebookDocument).selected !== kernel) {
// different kernel
continue;
}