diff --git a/index.html b/index.html index ea22efc..3e4d008 100644 --- a/index.html +++ b/index.html @@ -183,8 +183,12 @@ text-transform: uppercase; } - .results-table .duration-col, - .results-table .tracks-col { + .results-table .source-col { + width: 100px; + text-align: center; + } + + .results-table .duration-col { width: 80px; text-align: center; } @@ -222,7 +226,7 @@ font-size: 11px; } - .results-table .tracks-col { + .results-table .source-col { display: none; } @@ -627,8 +631,8 @@ Title + Source Duration - Tracks diff --git a/src/main.ts b/src/main.ts index e4b379a..3a674fd 100644 --- a/src/main.ts +++ b/src/main.ts @@ -190,8 +190,8 @@ class MotifApp { row.innerHTML = ` ${result.title} + ${result.source} ${result.parsed ? Math.round(result.parsed.durationSec) + 's' : '?'} - ${result.parsed ? result.parsed.tracks.length : '?'} `; // Make entire row clickable