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 3669e82 commit e7f6389Copy full SHA for e7f6389
jupyterlab_widgets/src/plugin.ts
@@ -89,7 +89,8 @@ function* consoleWidgetRenderers(
89
): Generator<WidgetRenderer, void, unknown> {
90
for (const cell of toArray(console.cells)) {
91
if (cell.model.type === 'code') {
92
- for (const codecell of (cell as CodeCell).outputArea.widgets) {
+ for (const codecell of ((cell as unknown) as CodeCell).outputArea
93
+ .widgets) {
94
for (const output of toArray(codecell.children())) {
95
if (output instanceof WidgetRenderer) {
96
yield output;
0 commit comments