@@ -23,9 +23,7 @@ export function ItemDetail({ item }: ItemProps) {
|
||||
<>
|
||||
<div className={styles.header}>
|
||||
<h1 className={styles.title}>{item.title}</h1>
|
||||
{item.tags.map((tag) => (
|
||||
<Tag key={tag} tag={tag} />
|
||||
))}
|
||||
{item.tags?.map((tag) => <Tag key={tag} tag={tag} />)}
|
||||
</div>
|
||||
<div className={styles.revisions}>
|
||||
{notMaintainedText && isNotMaintained(item.release) && (
|
||||
|
||||
@@ -21,7 +21,7 @@ export interface Item {
|
||||
ring: string;
|
||||
quadrant: string;
|
||||
flag: Flag;
|
||||
tags: string[];
|
||||
tags?: string[];
|
||||
release: Release;
|
||||
revisions?: Revision[];
|
||||
position: [x: number, y: number];
|
||||
|
||||
@@ -24,7 +24,7 @@ const Home: CustomPage = () => {
|
||||
const quadrants = getQuadrants();
|
||||
const tags = getTags();
|
||||
const items = getItems(undefined, true).filter(
|
||||
(item) => !tag || item.tags.includes(tag),
|
||||
(item) => !tag || item.tags?.includes(tag),
|
||||
);
|
||||
|
||||
return (
|
||||
@@ -41,7 +41,7 @@ const Home: CustomPage = () => {
|
||||
rings={rings}
|
||||
items={items}
|
||||
/>
|
||||
<Tags tags={tags} activeTag={tag} />
|
||||
{tags.length > 0 && <Tags tags={tags} activeTag={tag} />}
|
||||
<QuadrantList items={items} />
|
||||
</>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user