Skip to content

Commit

Permalink
Fix autocompletion.
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianStehle committed Aug 13, 2024
1 parent 4696888 commit ed9db5b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ export class CodeEditorComponent extends StatefulControlComponent<{}, any> imple

this.aceEditor = ace.edit(this.editor.nativeElement);
this.aceEditor.setFontSize('14px');
this.aceModes = ace.require('ace/ext-modelist');
this.aceTools = !!ace.require('ace/ext-language_tools');
this.aceModes = ace.require('ace/ext/modelist');
this.aceTools = !!ace.require('ace/ext/language_tools');

this.setValue(this.value);
this.setMode();
Expand Down

0 comments on commit ed9db5b

Please sign in to comment.