We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f134b09 commit 56a66deCopy full SHA for 56a66de
packages/com.sncommunity.advanced-checklist/src/index.tsx
@@ -65,7 +65,8 @@ const TaskEditor: React.FC = () => {
65
onNoteValueChange: async (currentNote: any) => {
66
note.current = currentNote
67
68
- const editable = !currentNote.content.appData['org.standardnotes.sn'].locked ?? true
+ const locked = currentNote.content.appData['org.standardnotes.sn'].locked ?? false
69
+ const editable = !locked
70
const spellCheckEnabled = currentNote.content.spellcheck
71
72
dispatch(setCanEdit(editable))
0 commit comments