fix: #669 external player playlist
Some checks are pending
Check / check (push) Waiting to run

This commit is contained in:
ThaUnknown 2025-06-20 14:13:37 +02:00
parent 3cbb5e108e
commit 9dcdaf20c2
No known key found for this signature in database
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{
"name": "ui",
"version": "6.3.70",
"version": "6.3.71",
"license": "BUSL-1.1",
"private": true,
"packageManager": "pnpm@9.14.4",

2
src/app.d.ts vendored
View file

@ -108,7 +108,7 @@ export interface Native {
version: () => Promise<string>
navigate: (cb: (data: { target: string, value: string | undefined }) => void) => Promise<void>
defaultTransparency: () => boolean
debug: (levels: string[]) => Promise<void>
debug: (levels: string) => Promise<void>
}
declare global {

View file

@ -104,7 +104,7 @@
Playlist
</Button>
</Dialog.Trigger>
<Dialog.Content class='bg-black p-10 border-4 max-w-5xl w-auto max-h-[calc(100%-1rem)] items-center justify-center flex rounded-xl overflow-y-auto z-[100]'>
<Dialog.Content class='bg-black p-10 border-4 max-w-5xl w-auto max-h-[calc(100%-1rem)] items-center justify-center flex flex-col rounded-xl overflow-y-auto z-[100]'>
{#each videoFiles as file, i (i)}
<Button on:click={() => selectFile(file)} variant='ghost'>
<span class='text-ellipsis text-nowrap overflow-clip'>{file.name}</span>