aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/src/main/js/editor
diff options
context:
space:
mode:
Diffstat (limited to 'language-web/src/main/js/editor')
-rw-r--r--language-web/src/main/js/editor/EditorArea.tsx4
-rw-r--r--language-web/src/main/js/editor/EditorStore.ts4
2 files changed, 4 insertions, 4 deletions
diff --git a/language-web/src/main/js/editor/EditorArea.tsx b/language-web/src/main/js/editor/EditorArea.tsx
index 7b6201ed..678a632d 100644
--- a/language-web/src/main/js/editor/EditorArea.tsx
+++ b/language-web/src/main/js/editor/EditorArea.tsx
@@ -10,10 +10,10 @@ import React, {
10} from 'react'; 10} from 'react';
11 11
12import { EditorParent } from './EditorParent'; 12import { EditorParent } from './EditorParent';
13import { getLogger } from '../logging';
14import { useRootStore } from '../RootStore'; 13import { useRootStore } from '../RootStore';
14import { getLogger } from '../utils/logger';
15 15
16const log = getLogger('EditorArea'); 16const log = getLogger('editor.EditorArea');
17 17
18function usePanel( 18function usePanel(
19 panelId: string, 19 panelId: string,
diff --git a/language-web/src/main/js/editor/EditorStore.ts b/language-web/src/main/js/editor/EditorStore.ts
index be9295bf..78cf763c 100644
--- a/language-web/src/main/js/editor/EditorStore.ts
+++ b/language-web/src/main/js/editor/EditorStore.ts
@@ -43,11 +43,11 @@ import {
43} from 'mobx'; 43} from 'mobx';
44 44
45import { problemLanguageSupport } from '../language/problemLanguageSupport'; 45import { problemLanguageSupport } from '../language/problemLanguageSupport';
46import { getLogger } from '../logging'; 46import { getLogger } from '../utils/logger';
47import type { ThemeStore } from '../theme/ThemeStore'; 47import type { ThemeStore } from '../theme/ThemeStore';
48import { XtextClient } from '../xtext/XtextClient'; 48import { XtextClient } from '../xtext/XtextClient';
49 49
50const log = getLogger('EditorStore'); 50const log = getLogger('editor.EditorStore');
51 51
52export class EditorStore { 52export class EditorStore {
53 themeStore; 53 themeStore;