mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-21 20:21:32 +10:00
use date attribute for start date
This commit is contained in:
@ -17,12 +17,12 @@ const ProjectItem = ({ item, language }) => {
|
||||
</a>
|
||||
)}
|
||||
</div>
|
||||
{(item.startDate || item.date) && (
|
||||
{item.date && (
|
||||
<h6 className="text-xs font-medium text-right">
|
||||
(
|
||||
{formatDateRange(
|
||||
{
|
||||
startDate: item.startDate? item.startDate : item.date,
|
||||
startDate: item.date,
|
||||
endDate: item.endDate,
|
||||
language,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user