Skip to content

Commit

Permalink
rename remaining advanceds to ace
Browse files Browse the repository at this point in the history
  • Loading branch information
HKalbasi committed Oct 15, 2021
1 parent 80369ff commit 9680f93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ui/frontend/editor/AceEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ interface AceEditorAsyncProps {
pairCharacters: PairCharacters;
}

class AceEditorAsync extends React.Component<AceEditorAsyncProps, AdvancedEditorAsyncState> {
class AceEditorAsync extends React.Component<AceEditorAsyncProps, AceEditorAsyncState> {
public constructor(props) {
super(props);
this.state = {
Expand Down Expand Up @@ -447,13 +447,13 @@ class AceEditorAsync extends React.Component<AceEditorAsyncProps, AdvancedEditor

private async requireLibraries() {
return import(
/* webpackChunkName: "advanced-editor" */
'../advanced-editor'
/* webpackChunkName: "ace-editor" */
'./ace-editor'
);
}
}

interface AdvancedEditorAsyncState {
interface AceEditorAsyncState {
theme?: string;
keybinding?: string;
themeState: LoadState;
Expand Down
File renamed without changes.

0 comments on commit 9680f93

Please sign in to comment.