feat: add release status fallback

This commit is contained in:
Kentai Radiquum 2024-07-14 01:03:45 +05:00
parent 8c7eb767bc
commit f3667eb209
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -29,12 +29,22 @@ export const ReleaseLink = (props) => {
</p>
</div>
<div className="absolute flex flex-col items-end gap-1 top-2 right-2">
{props.status && (
{props.status ? (
<div className="bg-gray-500 rounded-sm">
<p className="px-2 sm:px-4 py-0.5 sm:py-1 text-xs xl:text-base text-white">
{props.status.name}
</p>
</div>
) : (
<div className="bg-gray-500 rounded-sm">
<p className="px-2 sm:px-4 py-0.5 sm:py-1 text-xs xl:text-base text-white">
{props.status_id == 1
? "Завершено"
: props.status_id == 2
? "Онгоинг"
: "Анонс"}
</p>
</div>
)}
<div className="bg-gray-500 rounded-sm">
<div className="px-2 sm:px-4 py-0.5 sm:py-1 text-xs xl:text-base text-white flex">