Skip to content

Commit

Permalink
Rename Bookmarks Dropdown Title in Safari Extension (#15900)
Browse files Browse the repository at this point in the history
* Rename Dropdown Title

* changelog

---------

Co-authored-by: Per Nielsen Tikær <per@raycast.com>
  • Loading branch information
alexschcom and pernielsentikaer authored Dec 20, 2024
1 parent 9adedd6 commit b7e5b1d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions extensions/safari/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Safari Changelog

## [Chore: Renamed title in Dropdown] - 2024-12-20

## [Improve] - 2024-12-13

- Add a preference for `Search Reading List` to hide items that have already been read.
Expand Down
2 changes: 1 addition & 1 deletion extensions/safari/src/components/BookmarksDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default function BookmarksDropdown(props: { folderNames: string[]; onSele
props.onSelection(newValue);
}}
>
<List.Dropdown.Section title="Alcoholic Beverages">
<List.Dropdown.Section title="Folders">
{props.folderNames.map((folder) => {
const folderName = folder || "Top Level Bookmarks";
return <List.Dropdown.Item key={folderName} title={folderName} value={folderName} />;
Expand Down

0 comments on commit b7e5b1d

Please sign in to comment.