diff options
| author | MohamedBassem <me@mbassem.com> | 2025-06-07 20:52:34 +0100 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2025-06-07 23:29:09 +0100 |
| commit | 421e3e86910748199b7a09bace225e50b5120bee (patch) | |
| tree | aeb7ebac28a710eb37403fa6b1f8469b657f9ffc /apps/mobile/components/bookmarks | |
| parent | ec31a971f6c2e3e058debf05fe8235c1d599b055 (diff) | |
| download | karakeep-421e3e86910748199b7a09bace225e50b5120bee.tar.zst | |
fix(mobile): Move the delete button to the end in the bookmark menu
Diffstat (limited to 'apps/mobile/components/bookmarks')
| -rw-r--r-- | apps/mobile/components/bookmarks/BookmarkCard.tsx | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/apps/mobile/components/bookmarks/BookmarkCard.tsx b/apps/mobile/components/bookmarks/BookmarkCard.tsx index 6b3a0f33..5b118f43 100644 --- a/apps/mobile/components/bookmarks/BookmarkCard.tsx +++ b/apps/mobile/components/bookmarks/BookmarkCard.tsx @@ -130,20 +130,10 @@ function ActionBar({ bookmark }: { bookmark: ZBookmark }) { }), }, { - id: "delete", - title: "Delete", - attributes: { - destructive: true, - }, - image: Platform.select({ - ios: "trash", - }), - }, - { id: "manage_list", title: "Manage Lists", image: Platform.select({ - ios: "list", + ios: "list.bullet", }), }, { @@ -153,6 +143,16 @@ function ActionBar({ bookmark }: { bookmark: ZBookmark }) { ios: "tag", }), }, + { + id: "delete", + title: "Delete", + attributes: { + destructive: true, + }, + image: Platform.select({ + ios: "trash", + }), + }, ]} shouldOpenOnLongPress={false} > |
