From 765e72e702137658f32c302f398c2cde89560d76 Mon Sep 17 00:00:00 2001 From: Shaun Hamilton Date: Fri, 28 Jan 2022 12:21:13 +0000 Subject: [PATCH] feat(client): enable scrollBeyondLastLine in editor --- client/src/templates/Challenges/classic/editor.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/templates/Challenges/classic/editor.tsx b/client/src/templates/Challenges/classic/editor.tsx index 04fc3bd5bf..d7843ae9e5 100644 --- a/client/src/templates/Challenges/classic/editor.tsx +++ b/client/src/templates/Challenges/classic/editor.tsx @@ -228,7 +228,7 @@ const Editor = (props: EditorProps): JSX.Element => { const options: editor.IStandaloneEditorConstructionOptions = { fontSize: 18, - scrollBeyondLastLine: false, + scrollBeyondLastLine: true, selectionHighlight: false, overviewRulerBorder: false, hideCursorInOverviewRuler: true,