fixing crashes, upgrading dependencies, patching security vulnerabilities

This commit is contained in:
Amruth Pillai
2020-10-03 08:57:37 +05:30
parent 2410ce024a
commit 2aaed1a575
20 changed files with 4584 additions and 3245 deletions

View File

@ -19,11 +19,14 @@ const EducationItem = ({ item, language }) => {
{item.startDate && (
<h6 className="text-xs font-medium mb-1">
(
{formatDateRange({
startDate: item.startDate,
endDate: item.endDate,
language,
}, t)}
{formatDateRange(
{
startDate: item.startDate,
endDate: item.endDate,
language,
},
t,
)}
)
</h6>
)}
@ -31,7 +34,10 @@ const EducationItem = ({ item, language }) => {
</div>
</div>
{item.summary && (
<ReactMarkdown className="markdown mt-2 text-sm" source={item.summary} />
<ReactMarkdown
className="markdown mt-2 text-sm"
source={item.summary}
/>
)}
</div>
);

View File

@ -16,17 +16,23 @@ const WorkItem = ({ item, language }) => {
{item.startDate && (
<h6 className="text-xs font-medium text-right">
(
{formatDateRange({
startDate: item.startDate,
endDate: item.endDate,
language,
}, t)}
{formatDateRange(
{
startDate: item.startDate,
endDate: item.endDate,
language,
},
t,
)}
)
</h6>
)}
</div>
{item.summary && (
<ReactMarkdown className="markdown mt-2 text-sm" source={item.summary} />
<ReactMarkdown
className="markdown mt-2 text-sm"
source={item.summary}
/>
)}
</div>
);