From 61de6b1e1581be3041b1923ff5996001d0133e93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marcin=20miko=C5=82ajczak?= Date: Wed, 27 Mar 2024 11:40:04 +0000 Subject: [PATCH] Change message for empty bookmark folder --- src/features/bookmarks/index.tsx | 4 +++- src/locales/en.json | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/features/bookmarks/index.tsx b/src/features/bookmarks/index.tsx index 426f06d68..caedb5d0b 100644 --- a/src/features/bookmarks/index.tsx +++ b/src/features/bookmarks/index.tsx @@ -83,7 +83,9 @@ const Bookmarks: React.FC = ({ params }) => { })); }; - const emptyMessage = ; + const emptyMessage = folderId + ? + : ; const items = folderId ? [ { diff --git a/src/locales/en.json b/src/locales/en.json index 684b4b65a..e5e03f154 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -658,6 +658,7 @@ "empty_column.aliases.suggestions": "There are no account suggestions available for the provided term.", "empty_column.blocks": "You haven't blocked any users yet.", "empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.", + "empty_column.bookmarks.folder": "You don't have any bookmarks in this folder yet. When you add one, it will show up here.", "empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.", "empty_column.dislikes": "No one has disliked this post yet. When someone does, they will show up here.",