remove smooth behavior (#20794)

This commit is contained in:
Barbara Valdez
2022-10-10 11:48:09 -07:00
committed by GitHub
parent 910e37dfce
commit 5d63f0d229

View File

@@ -82,7 +82,7 @@ export abstract class CellView extends AngularDisposable implements OnDestroy, I
className: findRangeSpecificClass,
each: function (node, range) {
// node is the marked DOM element
node.scrollIntoView({ behavior: 'smooth', block: 'center' });
node.scrollIntoView({ block: 'center' });
}
});
}