aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/blog/index.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-01-11 13:04:50 +0100
committerArmand Philippot <git@armandphilippot.com>2022-01-11 15:33:04 +0100
commit3d35170404b280bb70913ef41b0478ca65e00d72 (patch)
treedc4e97cde6f1c2de84a2a84025cabaa59820ea33 /src/pages/blog/index.tsx
parent67d94ce796e425f1a87806b848f58328ea7adde7 (diff)
chore(widget): pass title to TopicsList as parameter
I also choose to no display the current topic in the list if the current page is a subject.
Diffstat (limited to 'src/pages/blog/index.tsx')
-rw-r--r--src/pages/blog/index.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/blog/index.tsx b/src/pages/blog/index.tsx
index 0804cd2..bee0522 100644
--- a/src/pages/blog/index.tsx
+++ b/src/pages/blog/index.tsx
@@ -62,7 +62,7 @@ const Blog: NextPageWithLayout<BlogPageProps> = ({ fallback }) => {
)}
<Sidebar>
<ThematicsList title={t`Thematics`} />
- <TopicsList />
+ <TopicsList title={t`Topics`} />
</Sidebar>
</article>
</>