mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-24 07:29:30 +01:00
fix: delete button not showing in actionsheet in trash for notebook items
This commit is contained in:
@@ -25,8 +25,8 @@ export const NotebookItem = ({item, isTopic = false, notebookID, isTrash}) => {
|
||||
let rowItems =
|
||||
item.type === 'topic'
|
||||
? ['Edit Topic', 'Add Shortcut', 'Delete']
|
||||
: ['Edit Notebook', 'Pin', 'Add Shortcut', 'Delete'];
|
||||
rowItems = isTrash ? ['Restore', 'Remove'] : rowItems;
|
||||
: ['Edit Notebook', 'Pin', 'Add Shortcut', 'Delete',];
|
||||
rowItems = isTrash ? ['Restore', 'PermDelete'] : rowItems;
|
||||
|
||||
ActionSheetEvent(item, false, false, rowItems, {
|
||||
notebookID: notebookID,
|
||||
|
||||
Reference in New Issue
Block a user