fix: long track name displaying issue; wrong separator model name mapping; imported generated full song not adjusting max bars; implemented retry mechanism for K.G.One server calls.

This commit is contained in:
Xiaohan-Tian
2026-04-16 17:44:44 -07:00
parent 7b82572d5c
commit 3010cf4e2d
8 changed files with 377 additions and 54 deletions
+3
View File
@@ -97,6 +97,9 @@
font-size: 12px;
cursor: pointer;
position: relative;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.track-name:hover {
+2 -1
View File
@@ -289,9 +289,10 @@ const TrackInfoItem: React.FC<TrackInfoItemProps> = ({
)}
</div>
<div className="track-name-and-controls">
<div
<div
className="track-name"
onClick={handleTrackNameClick}
title={track.getName()}
>
{track.getName()}
</div>