Skip to content

Commit e2615da

Browse files
author
NamCyan
committed
update
1 parent ca8c366 commit e2615da

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

gitprofile.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,15 +110,15 @@ const config = {
110110
news: {
111111
items: [
112112
{
113-
data: "Nov 5, 2023",
113+
date: "Nov 5, 2023",
114114
content: "🎉 Our paper “Continual Variational Dropout: A View of Auxiliary Local Variables in Continual Learning” has been accepted to Machine Learning journal."
115115
},
116116
{
117-
data: "Oct 28, 2023",
117+
date: "Oct 28, 2023",
118118
content: "✨ Happy to share that I completed the Master degree of Data Science with the excellent score."
119119
},
120120
{
121-
data: "Oct 8, 2023",
121+
date: "Oct 8, 2023",
122122
content: "🎉 Our paper “The Vault: A Comprehensive Multilingual Dataset for Advancing Code Understanding and Generation” has been accepted to Findings of EMNLP 2023."
123123
},
124124
],

src/components/news/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const ListItem = ({ date, content }) => (
88
className="absolute w-2 h-2 bg-base-300 rounded-full border border-base-300 mt-1.5"
99
style={{ left: '-4.5px' }}
1010
></div>
11-
<h3 className="font-semibold text-lg">{date}: {content}</h3>
11+
<h3 className="font-semibold text-base">{date}: {content}</h3>
1212
</li>
1313
);
1414

0 commit comments

Comments
 (0)