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
|
|
@ -57,8 +57,16 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
{:else if flow.case === "uninstall"}
|
{:else if flow.case === "uninstall"}
|
||||||
<Uninstall bind:footer />
|
<Uninstall bind:footer />
|
||||||
{:else if flow.case === "osUnsupported"}
|
{:else if flow.case === "osUnsupported"}
|
||||||
<ErrorState title={$tr.launcherOsUnsupported()} detail={flow.value} bind:footer />
|
<ErrorState
|
||||||
|
title={$tr.launcherOsUnsupported()}
|
||||||
|
detail={flow.value}
|
||||||
|
bind:footer
|
||||||
|
/>
|
||||||
{:else if flow.case === "unknownError"}
|
{:else if flow.case === "unknownError"}
|
||||||
<ErrorState title={$tr.launcherUnknownError()} detail={flow.value} bind:footer />
|
<ErrorState
|
||||||
|
title={$tr.launcherUnknownError()}
|
||||||
|
detail={flow.value}
|
||||||
|
bind:footer
|
||||||
|
/>
|
||||||
{/if}
|
{/if}
|
||||||
</Start>
|
</Start>
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ export const load = (async () => {
|
||||||
i18nPromise,
|
i18nPromise,
|
||||||
langsPromise,
|
langsPromise,
|
||||||
statePromise,
|
statePromise,
|
||||||
mirrorsPromise
|
mirrorsPromise,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
return { langs, userLocale, state, mirrors };
|
return { langs, userLocale, state, mirrors };
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue