Skip to content

Commit

Permalink
fix: Change search box placeholder text for windows devices (#31074)
Browse files Browse the repository at this point in the history
  • Loading branch information
mayank6725 authored Nov 27, 2023
1 parent 38c5302 commit e2ea90a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/meteor/client/sidebar/search/SearchList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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)));
Expand Down

0 comments on commit e2ea90a

Please sign in to comment.