We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9bd395 commit d0fd439Copy full SHA for d0fd439
src/components/ui/WorkExperience.astro
@@ -12,7 +12,9 @@ const { Content } = await render(entry);
12
<li class="py-0.5">
13
<div class="flex gap-5">
14
<div class="relative min-w-28 shrink-0">
15
- <span class="text-muted-foreground text-sm">{entry.data.from} - {entry.data.to}</span>
+ <span class="text-muted-foreground text-sm"
16
+ >{entry.data.from} - {entry.data.to ?? 'Present'}</span
17
+ >
18
</div>
19
<div class="flex flex-col gap-3">
20
<div class="flex flex-col">
@@ -24,4 +26,4 @@ const { Content } = await render(entry);
24
26
25
27
28
-</li>
29
+</li>
0 commit comments