re-enable changelog on homepage
This commit is contained in:
parent
dae30b3844
commit
cf2ae1a622
@ -22,24 +22,23 @@ export default function Changelog(props: { changelogData: LogItem[] }) {
|
||||
</div>
|
||||
<div>
|
||||
<ul className="list-disc list-inside mr-7 marker:font-ibm marker:text-red-400 ">
|
||||
Please check back in a little bit!
|
||||
|
||||
{/* { */}
|
||||
{/* props.changelogData.map((log, index) => { */}
|
||||
{/* let mostRecent = index == 0 ? true : false; */}
|
||||
{/**/}
|
||||
{/* return ( */}
|
||||
{/* <li key={log.id}> */}
|
||||
{/* <NewsItem */}
|
||||
{/* date={log.date} */}
|
||||
{/* title={log.title} */}
|
||||
{/* color={newsItemColors[index]} */}
|
||||
{/* link={[log.link, log.linkName]} */}
|
||||
{/* mostRecent={mostRecent} /> */}
|
||||
{/* </li> */}
|
||||
{/* ) */}
|
||||
{/* }) */}
|
||||
{/* } */}
|
||||
{
|
||||
props.changelogData.map((log, index) => {
|
||||
let mostRecent = index == 0 ? true : false;
|
||||
|
||||
return (
|
||||
<li key={log.id}>
|
||||
<NewsItem
|
||||
date={log.date}
|
||||
title={log.title}
|
||||
color={newsItemColors[index]}
|
||||
link={[log.link, log.linkName]}
|
||||
mostRecent={mostRecent} />
|
||||
</li>
|
||||
)
|
||||
})
|
||||
}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user