Hide read only journals when creating/editing an item

master
Ramzan 4 years ago committed by Tom Hacohen
parent c8442d9440
commit 593e30ad77

@ -60,13 +60,19 @@ const itemsSelector = createSelector(
if (collectionInfo.type === "ADDRESS_BOOK") { if (collectionInfo.type === "ADDRESS_BOOK") {
addressBookItems = syncEntriesToItemMap(collectionInfo, syncEntries, addressBookItems); addressBookItems = syncEntriesToItemMap(collectionInfo, syncEntries, addressBookItems);
collectionsAddressBook.push(collectionInfo); if (!syncJournal.journal.readOnly) {
collectionsAddressBook.push(collectionInfo);
}
} else if (collectionInfo.type === "CALENDAR") { } else if (collectionInfo.type === "CALENDAR") {
calendarItems = syncEntriesToEventItemMap(collectionInfo, syncEntries, calendarItems); calendarItems = syncEntriesToEventItemMap(collectionInfo, syncEntries, calendarItems);
collectionsCalendar.push(collectionInfo); if (!syncJournal.journal.readOnly) {
collectionsCalendar.push(collectionInfo);
}
} else if (collectionInfo.type === "TASKS") { } else if (collectionInfo.type === "TASKS") {
taskListItems = syncEntriesToTaskItemMap(collectionInfo, syncEntries, taskListItems); taskListItems = syncEntriesToTaskItemMap(collectionInfo, syncEntries, taskListItems);
collectionsTaskList.push(collectionInfo); if (!syncJournal.journal.readOnly) {
collectionsTaskList.push(collectionInfo);
}
} }
} }
); );

Loading…
Cancel
Save