Scaffold: Disable sticky headers in Tests editor

This commit is contained in:
Abe Jellinek 2024-04-12 13:21:17 -07:00
parent b029e561f3
commit c031e1fbbd

View file

@ -323,7 +323,8 @@ var Scaffold = new function () {
});
editor.updateOptions({
links: false
links: false,
stickyScroll: { enabled: false }
});
monaco.languages.registerCodeLensProvider('json', this.createTestCodeLensProvider(monaco, editor));