Fixed release type display

This commit is contained in:
Jonas_Jones 2023-12-02 17:03:31 +01:00
parent 0e4a2e3ed4
commit 651028bef6

View file

@ -231,7 +231,8 @@
<td
>{release.type === null
? "Unknown"
: release.type}</td
// show the release.type list as a comma separated string
: release.type.join(", ")}</td
>
</tr>
{/each}