From 5bbc4532682f8d0330cc0a25aaa4a8395baa047e Mon Sep 17 00:00:00 2001 From: Muhammad Ali Date: Sat, 25 Nov 2023 15:39:38 +0500 Subject: [PATCH] web: fix new tags do not appear under "recent" tags (#3827) --- apps/web/src/components/group-header/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/web/src/components/group-header/index.tsx b/apps/web/src/components/group-header/index.tsx index 0db280cd4..9f9ccfd20 100644 --- a/apps/web/src/components/group-header/index.tsx +++ b/apps/web/src/components/group-header/index.tsx @@ -111,7 +111,8 @@ const sortByMenu: (options: GroupingMenuOptions) => MenuItem = (options) => ({ { key: "dateCreated", title: "Date created", - isHidden: options.groupingKey === "trash" + isHidden: + options.groupingKey === "trash" || options.groupingKey === "tags" }, { key: "dateEdited",