mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-08-10 19:21:32 -07:00
[codex] Make Windows mpv shortcut self-contained (#40)
This commit is contained in:
@@ -1,7 +1,4 @@
|
||||
import type {
|
||||
PlaylistBrowserDirectoryItem,
|
||||
PlaylistBrowserQueueItem,
|
||||
} from '../../types';
|
||||
import type { PlaylistBrowserDirectoryItem, PlaylistBrowserQueueItem } from '../../types';
|
||||
import type { RendererContext } from '../context';
|
||||
|
||||
type PlaylistBrowserRowRenderActions = {
|
||||
@@ -55,7 +52,7 @@ export function renderPlaylistBrowserDirectoryRow(
|
||||
? item.episodeLabel
|
||||
? `${item.episodeLabel} · Current file`
|
||||
: 'Current file'
|
||||
: item.episodeLabel ?? 'Video file';
|
||||
: (item.episodeLabel ?? 'Video file');
|
||||
main.append(label, meta);
|
||||
|
||||
const trailing = document.createElement('div');
|
||||
|
||||
Reference in New Issue
Block a user