c9a9f38ea9
It was intended to be a temporary message, and it's been about 15 months. https://forums.ankiweb.net/t/anki-2-1-55-beta-3/24295/42
22 lines
648 B
Svelte
22 lines
648 B
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<script lang="ts">
|
|
import TitledContainer from "../components/TitledContainer.svelte";
|
|
import type { DeckOptionsState } from "./lib";
|
|
|
|
export let state: DeckOptionsState;
|
|
|
|
const components = state.addonComponents;
|
|
const auxData = state.currentAuxData;
|
|
</script>
|
|
|
|
{#if $components.length}
|
|
<TitledContainer title="Add-ons">
|
|
{#each $components as addon}
|
|
<svelte:component this={addon.component} bind:data={$auxData} {...addon} />
|
|
{/each}
|
|
</TitledContainer>
|
|
{/if}
|