mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 06:52:21 -04:00
Fix module name formatting
This commit is contained in:
parent
de8abebcd1
commit
49745e1282
1 changed files with 6 additions and 1 deletions
|
@ -171,7 +171,12 @@ export function setFormat(cmd: string, arg?: string, nosave = false): void {
|
||||||
}
|
}
|
||||||
|
|
||||||
const i18n = setupI18n({
|
const i18n = setupI18n({
|
||||||
modules: [ModuleName.EDITING, ModuleName.KEYBOARD, ModuleName.ACTIONS, ModuleName.BROWSING],
|
modules: [
|
||||||
|
ModuleName.EDITING,
|
||||||
|
ModuleName.KEYBOARD,
|
||||||
|
ModuleName.ACTIONS,
|
||||||
|
ModuleName.BROWSING,
|
||||||
|
],
|
||||||
});
|
});
|
||||||
|
|
||||||
import type EditorToolbar from "./EditorToolbar.svelte";
|
import type EditorToolbar from "./EditorToolbar.svelte";
|
||||||
|
|
Loading…
Reference in a new issue