feat(web): mount TrackMenu in TrackRow + PlayerBar

This commit is contained in:
2026-04-30 20:31:56 -04:00
parent 8da4a3f9c0
commit 88ff997af7
4 changed files with 37 additions and 5 deletions
+2
View File
@@ -7,6 +7,7 @@
import { formatDuration } from '$lib/media/duration';
import { FALLBACK_COVER } from '$lib/media/covers';
import LikeButton from './LikeButton.svelte';
import TrackMenu from './TrackMenu.svelte';
const current = $derived(player.current);
@@ -59,6 +60,7 @@
</a>
</div>
<LikeButton entityType="track" entityId={current.id} />
<TrackMenu track={current} />
</div>
<!-- Center: seek row + transport row -->