mirror of
https://github.com/open-webui/desktop
synced 2025-06-26 18:15:59 +00:00
enh: install help message
This commit is contained in:
parent
4c267250a9
commit
58edd82696
@ -1,5 +1,7 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { onMount } from 'svelte';
|
import { onMount } from 'svelte';
|
||||||
|
import { fly } from 'svelte/transition';
|
||||||
|
|
||||||
import { installStatus, serverStatus } from '../stores';
|
import { installStatus, serverStatus } from '../stores';
|
||||||
|
|
||||||
import Spinner from './common/Spinner.svelte';
|
import Spinner from './common/Spinner.svelte';
|
||||||
@ -73,10 +75,18 @@
|
|||||||
<div class="flex justify-center mt-8">
|
<div class="flex justify-center mt-8">
|
||||||
<div class="flex flex-col justify-center items-center">
|
<div class="flex flex-col justify-center items-center">
|
||||||
{#if installing}
|
{#if installing}
|
||||||
<div class="flex flex-col gap-3">
|
<div class="flex flex-col gap-3 text-center">
|
||||||
<Spinner className="size-5" />
|
<Spinner className="size-5" />
|
||||||
|
|
||||||
<div class=" font-secondary">Installing...</div>
|
<div class=" font-secondary">Installing...</div>
|
||||||
|
|
||||||
|
<div
|
||||||
|
class=" font-default text-xs"
|
||||||
|
in:fly={{ duration: 500, y: 10 }}
|
||||||
|
>
|
||||||
|
This might take a few minutes, We’ll notify you when it’s
|
||||||
|
ready.
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{:else}
|
{:else}
|
||||||
<button
|
<button
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user