mirror of
https://github.com/fspecii/ace-step-ui.git
synced 2026-04-25 06:05:47 +03:00
[GH-ISSUE #22] Bug: like button does not work #19
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ace-step-ui#19
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Basthet on GitHub (Feb 5, 2026).
Original GitHub issue: https://github.com/fspecii/ace-step-ui/issues/22
The like button (the heart in the Song Detail panel) on the very right does not work
@fspecii commented on GitHub (Feb 5, 2026):
Hi @Basthet, good catch! This is now fixed.
The bug was in the right sidebar — it was passing the entire Song object to the like handler instead of just the song ID. SQLite was receiving
[object Object]as the song_id, which caused the foreign key error.Fix:
onToggleLike?.(song)→onToggleLike?.(song.id)Pull the latest and the heart button in the Song Detail panel should work now.