Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
denser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
denser
Merge requests
!511
Resolve "Mark the title in gray if the post has already been visited"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Mark the title in gray if the post has already been visited"
470-mark-the-title-in-gray-if-the-post-has-already-been-visited
into
main
Overview
0
Commits
9
Pipelines
8
Changes
2
Merged
Krzysztof Kocot
requested to merge
470-mark-the-title-in-gray-if-the-post-has-already-been-visited
into
main
7 months ago
Overview
0
Commits
9
Pipelines
8
Changes
2
Expand
Closes
#470 (closed)
#469 (closed)
#474
Edited
7 months ago
by
Krzysztof Kocot
0
0
Merge request reports
Compare
main
version 6
68e11360
7 months ago
version 5
1449fd22
7 months ago
version 4
be3de943
7 months ago
version 3
00a3f0c7
7 months ago
version 2
10ce4319
7 months ago
version 1
be6b8b4a
7 months ago
main (base)
and
version 1
latest version
27a26979
9 commits,
7 months ago
version 6
68e11360
8 commits,
7 months ago
version 5
1449fd22
7 commits,
7 months ago
version 4
be3de943
6 commits,
7 months ago
version 3
00a3f0c7
5 commits,
7 months ago
version 2
10ce4319
4 commits,
7 months ago
version 1
be6b8b4a
1 commit,
7 months ago
2 files
+
10
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
apps/blog/components/post-list-item.tsx
+
6
−
1
Options
@@ -249,7 +249,12 @@ const PostListItem = ({
nsfw
</
Badge
>
)
:
null
}
<
Link
href
=
{
`/
${
post
.
category
}
/@
${
post
.
author
}
/
${
post
.
permlink
}
`
}
>
{
post
.
title
}
</
Link
>
<
Link
href
=
{
`/
${
post
.
category
}
/@
${
post
.
author
}
/
${
post
.
permlink
}
`
}
className
=
"visited:text-gray-500 dark:visited:text-gray-400"
>
{
post
.
title
}
</
Link
>
</
CardTitle
>
<
CardDescription
className
=
"block w-auto md:overflow-hidden md:overflow-ellipsis md:whitespace-nowrap"
>
<
Link
Loading