Remove inaccurate Length column from results table

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
b1rdmania
2025-12-29 15:21:23 +00:00
parent 04efceee9b
commit a6d0358469
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -1163,7 +1163,6 @@
<tr> <tr>
<th>Song</th> <th>Song</th>
<th class="source-col">Source</th> <th class="source-col">Source</th>
<th class="duration-col">Length</th>
<th class="action-col">Action</th> <th class="action-col">Action</th>
</tr> </tr>
</thead> </thead>
-1
View File
@@ -345,7 +345,6 @@ class MotifApp {
row.innerHTML = ` row.innerHTML = `
<td>${this.cleanSongTitle(result.title)}</td> <td>${this.cleanSongTitle(result.title)}</td>
<td class="source-col">${this.formatSourceLabel(result.source)}</td> <td class="source-col">${this.formatSourceLabel(result.source)}</td>
<td class="duration-col">${this.formatDuration(result.parsed?.durationSec)}</td>
<td class="action-col"> <td class="action-col">
<div style="display:flex; gap: 10px; justify-content: flex-end; align-items:center;"> <div style="display:flex; gap: 10px; justify-content: flex-end; align-items:center;">
<button type="button" class="row-use-btn">Use</button> <button type="button" class="row-use-btn">Use</button>