From: Adam Dullage Date: Mon, 10 Jul 2023 11:27:42 +0000 (+0100) Subject: Fix issue clicking links in unordered lists X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=131700b347168490e4b56869c9cae34374460348;p=flatnotes.git Fix issue clicking links in unordered lists --- diff --git a/flatnotes/src/components/NoteViewerEditor.vue b/flatnotes/src/components/NoteViewerEditor.vue index 4959901..a7677c5 100644 --- a/flatnotes/src/components/NoteViewerEditor.vue +++ b/flatnotes/src/components/NoteViewerEditor.vue @@ -166,8 +166,11 @@ } // Disable checkboxes in view mode. See https://github.com/nhn/tui.editor/issues/1087. -.note-viewer li { +.note-viewer li.task-list-item { pointer-events: none; + a { + pointer-events: auto; + } }