kaneo (minimalist kanban) fork to experiment adding a tangled integration github.com/usekaneo/kaneo
0
fork

Configure Feed

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

Update apps/web/src/components/activity/comment-card.tsx

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

authored by

Tin Sever
coderabbitai[bot]
and committed by
GitHub
650418a5 ba8cbfed

+7 -2
+7 -2
apps/web/src/components/activity/comment-card.tsx
··· 163 163 164 164 <Tooltip> 165 165 <TooltipTrigger asChild> 166 - <span className="cursor-default text-xs text-muted-foreground/62"> 166 + <time 167 + dateTime={new Date(createdAt).toISOString()} 168 + tabIndex={0} 169 + className="cursor-default text-xs text-muted-foreground/62 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2" 170 + > 167 171 {formatRelativeTime(createdAt)} 168 - </span> 172 + </time> 173 + </TooltipTrigger> 169 174 </TooltipTrigger> 170 175 <TooltipContent> 171 176 <p className="text-xs">{formatDateTime(createdAt)}</p>