mirror of
https://github.com/ankitects/anki.git
synced 2025-11-07 05:07:10 -05:00
Make API argument required in ConfigEditor
This commit is contained in:
parent
c49ad009d0
commit
b99b12f157
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
import type { DeckOptionsState } from "./lib";
|
import type { DeckOptionsState } from "./lib";
|
||||||
|
|
||||||
export let state: DeckOptionsState;
|
export let state: DeckOptionsState;
|
||||||
export let options: Record<string, never> | undefined = undefined;
|
export let options: Record<string, never>;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Section api={options}>
|
<Section api={options}>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue