@@ -46,15 +49,24 @@ const Research = () => {
{'Publications: '}
{item.Publication.length > 0
- ?
- {Object.entries(item['Publication']).map(([key, value], index) =>
- -
- {`${key}: `}
- {value}
-
- )}
-
- : It will be updated soon.
+ ? (
+
+ {item.Publication.map((id) => {
+ const pub = pubIndex.get(id);
+ if (!pub) return null;
+ return (
+ -
+ {
+ pub.arxiv
+ ? ({pub.title})
+ : ({pub.title})
+ }
+
+ );
+ })}
+
+ )
+ : (It will be updated soon.)
}