Adding more releases, and sorting SASS

This commit is contained in:
2026-01-10 16:55:12 +00:00
parent 686e057bb4
commit 208a06c351
3 changed files with 363 additions and 8 deletions

View File

@@ -307,7 +307,7 @@ export default function ReleasesExplorer({
<tr>
<th style={{width: 80}}>Entry ID</th>
<th>Title</th>
<th style={{width: 110}}>Release #</th>
<th style={{width: 140}}>Release #</th>
<th style={{width: 100}}>Year</th>
</tr>
</thead>
@@ -320,7 +320,11 @@ export default function ReleasesExplorer({
<td>
<EntryLink id={it.entryId} title={it.entryTitle} />
</td>
<td>#{it.releaseSeq}</td>
<td>
<Link href={`/zxdb/releases/${it.entryId}/${it.releaseSeq}`}>
#{it.releaseSeq}
</Link>
</td>
<td>{it.year ?? <span className="text-secondary">-</span>}</td>
</tr>
))}