mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-05-06 07:08:56 +00:00
fix: #669 external player playlist
Some checks are pending
Check / check (push) Waiting to run
Some checks are pending
Check / check (push) Waiting to run
This commit is contained in:
parent
3cbb5e108e
commit
9dcdaf20c2
3 changed files with 3 additions and 3 deletions
|
|
@ -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
2
src/app.d.ts
vendored
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue