mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-04-20 01:02:05 +00:00
fix: privacy policy url
fix: fitwidth previews
This commit is contained in:
parent
acce767c88
commit
13ab7ec214
3 changed files with 3 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "ui",
|
||||
"version": "6.1.3",
|
||||
"version": "6.1.4",
|
||||
"license": "BUSL-1.1",
|
||||
"private": true,
|
||||
"packageManager": "pnpm@9.14.4",
|
||||
|
|
|
|||
|
|
@ -649,7 +649,7 @@
|
|||
</div>
|
||||
{#if seeking}
|
||||
{#await thumbnailer.getThumbnail(seekIndex) then src}
|
||||
<img {src} alt='thumbnail' class='w-full h-full bg-black absolute top-0 right-0 object-contain' loading='lazy' decoding='async' />
|
||||
<img {src} alt='thumbnail' class='w-full h-full bg-black absolute top-0 right-0 object-contain' loading='lazy' decoding='async' class:fitWidth />
|
||||
{/await}
|
||||
{/if}
|
||||
{#if stats}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
<div class='flex items-center space-x-2 pt-12'>
|
||||
<Checkbox id='terms' bind:checked />
|
||||
<Label for='terms' class='text-md font-medium leading-none text-muted-foreground'>
|
||||
I agree to the <a use:click={() => native.openURL(`${WEB_URL}/terms`)} class='text-primary underline'>Terms of Service</a> and <a use:click={() => native.openURL(`${WEB_URL}/terms`)} class='text-primary underline'>Privacy Policy</a>
|
||||
I agree to the <a use:click={() => native.openURL(`${WEB_URL}/terms`)} class='text-primary underline'>Terms of Service</a> and <a use:click={() => native.openURL(`${WEB_URL}/privacy`)} class='text-primary underline'>Privacy Policy</a>
|
||||
</Label>
|
||||
</div>
|
||||
<Button class='mt-8 text-lg font-bold' disabled={!checked} size='lg' href={checked ? './storage' : undefined}>Start Setup</Button>
|
||||
|
|
|
|||
Loading…
Reference in a new issue