Fix call to `cell.model.getMetadata()`

Jeremy Tuloup 3 years ago
parent a9c422f4cd
commit 23391a9ed0

@ -270,7 +270,7 @@ const scrollOutput: JupyterFrontEndPlugin<void> = {
}
const { outputArea } = cell;
// respect cells with an explicit scrolled state
const scrolled = cell.model.metadata.get('scrolled');
const scrolled = cell.model.getMetadata('scrolled');
if (scrolled !== undefined) {
return;
}

Loading…
Cancel
Save