From e2ea90a8c48aff80f935331910dcfe4f30d9592f Mon Sep 17 00:00:00 2001 From: Mayank <69050987+mayank6725@users.noreply.github.com> Date: Mon, 27 Nov 2023 19:15:45 +0530 Subject: [PATCH] fix: Change search box placeholder text for windows devices (#31074) --- apps/meteor/client/sidebar/search/SearchList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/meteor/client/sidebar/search/SearchList.tsx b/apps/meteor/client/sidebar/search/SearchList.tsx index 85718146b3e6..e63be149cc7d 100644 --- a/apps/meteor/client/sidebar/search/SearchList.tsx +++ b/apps/meteor/client/sidebar/search/SearchList.tsx @@ -55,7 +55,7 @@ const shortcut = ((): string => { if (window.navigator.platform.toLowerCase().includes('mac')) { return '(\u2318+K)'; } - return '(\u2303+K)'; + return '(Ctrl+K)'; })(); const LIMIT = parseInt(String(getConfig('Sidebar_Search_Spotlight_LIMIT', 20)));