this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

🎨 Auto-format code [skip ci]

+4 -2
+4 -2
src/pages/works/[work].astro
··· 52 52 53 53 const startYear = started?.getFullYear(); 54 54 const endYear = finished?.getFullYear(); 55 - const year = startYear && endYear && startYear !== endYear ? `${startYear}~${endYear}` : (endYear ?? startYear) 56 - 55 + const year = 56 + startYear && endYear && startYear !== endYear 57 + ? `${startYear}~${endYear}` 58 + : (endYear ?? startYear); 57 59 58 60 const titleStyle = misc?.title_style ?? ""; 59 61