changed recent changes placeholder

This commit is contained in:
Nisse Lommerde 2023-07-03 20:29:34 +02:00
parent 6a3ee34872
commit 8ab54f60bd

View File

@ -22,22 +22,24 @@ export default function Changelog(props: { changelogData: LogItem[] }) {
</div> </div>
<div> <div>
<ul className="list-disc list-inside mr-7 marker:font-ibm marker:text-red-400 "> <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}> {/* props.changelogData.map((log, index) => { */}
<NewsItem {/* let mostRecent = index == 0 ? true : false; */}
date={log.date} {/**/}
title={log.title} {/* return ( */}
color={newsItemColors[index]} {/* <li key={log.id}> */}
link={[log.link, log.linkName]} {/* <NewsItem */}
mostRecent={mostRecent} /> {/* date={log.date} */}
</li> {/* title={log.title} */}
) {/* color={newsItemColors[index]} */}
}) {/* link={[log.link, log.linkName]} */}
} {/* mostRecent={mostRecent} /> */}
{/* </li> */}
{/* ) */}
{/* }) */}
{/* } */}
</ul> </ul>
</div> </div>