mirror of
https://github.com/ankitects/anki.git
synced 2025-11-06 12:47:11 -05:00
./ninja format
This commit is contained in:
parent
73ac0a1cfc
commit
68f9e05249
2 changed files with 13 additions and 5 deletions
|
|
@ -56,9 +56,17 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
<Normal {mirrors} options={flow.value.options!} {uninstall} bind:footer />
|
||||
{:else if flow.case === "uninstall"}
|
||||
<Uninstall bind:footer />
|
||||
{:else if flow.case === "osUnsupported" }
|
||||
<ErrorState title={$tr.launcherOsUnsupported()} detail={flow.value} bind:footer />
|
||||
{:else if flow.case === "unknownError" }
|
||||
<ErrorState title={$tr.launcherUnknownError()} detail={flow.value} bind:footer />
|
||||
{:else if flow.case === "osUnsupported"}
|
||||
<ErrorState
|
||||
title={$tr.launcherOsUnsupported()}
|
||||
detail={flow.value}
|
||||
bind:footer
|
||||
/>
|
||||
{:else if flow.case === "unknownError"}
|
||||
<ErrorState
|
||||
title={$tr.launcherUnknownError()}
|
||||
detail={flow.value}
|
||||
bind:footer
|
||||
/>
|
||||
{/if}
|
||||
</Start>
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ export const load = (async () => {
|
|||
i18nPromise,
|
||||
langsPromise,
|
||||
statePromise,
|
||||
mirrorsPromise
|
||||
mirrorsPromise,
|
||||
]);
|
||||
|
||||
return { langs, userLocale, state, mirrors };
|
||||
|
|
|
|||
Loading…
Reference in a new issue