Skip to content

Commit df70309

Browse files
authored
Fix #192311 (#192344)
1 parent efc1b30 commit df70309

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/notebook/browser/services/notebookExecutionStateServiceImpl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export class NotebookExecutionStateService extends Disposable implements INotebo
8484

8585
getCellExecutionsByHandleForNotebook(notebook: URI): Map<number, INotebookCellExecution> | undefined {
8686
const exeMap = this._executions.get(notebook);
87-
return exeMap ?? undefined;
87+
return exeMap ? new Map(exeMap.entries()) : undefined;
8888
}
8989

9090
private _onCellExecutionDidChange(notebookUri: URI, cellHandle: number, exe: CellExecution): void {

0 commit comments

Comments
 (0)