diff --git a/src/sql/workbench/contrib/notebook/browser/find/notebookFindDecorations.ts b/src/sql/workbench/contrib/notebook/browser/find/notebookFindDecorations.ts index d78e62e5c9..f26e62ed86 100644 --- a/src/sql/workbench/contrib/notebook/browser/find/notebookFindDecorations.ts +++ b/src/sql/workbench/contrib/notebook/browser/find/notebookFindDecorations.ts @@ -193,7 +193,7 @@ export class NotebookFindDecorations implements IDisposable { // expand the cell if it's collapsed and scroll into view match.cell.isCollapsed = false; if (matchEditor) { - matchEditor.getContainer().scrollIntoView({ behavior: 'smooth', block: 'nearest' }); + matchEditor.getContainer().scrollIntoView({ block: 'nearest' }); matchEditor.getControl().revealRangeInCenterIfOutsideViewport(match, ScrollType.Smooth); } }