diff --git a/client/src/components/Chapter.vue b/client/src/components/Chapter.vue index e69859f1..5e845597 100644 --- a/client/src/components/Chapter.vue +++ b/client/src/components/Chapter.vue @@ -3,7 +3,7 @@ :data-scrollto="chapter.id" class="chapter">

@@ -97,10 +97,9 @@ export default { })); }, note() { - if (!(this.chapter && this.chapter.bookmark)) { - return; + if (this.chapter && this.chapter.bookmark) { + return this.chapter.bookmark.note; } - return this.chapter.bookmark.note; }, titleGreyedOut() { return this.textHidden(CHAPTER_TITLE_TYPE) && this.editModule; diff --git a/client/src/components/ContentBlock.vue b/client/src/components/ContentBlock.vue index 67e32e7b..c0490b65 100644 --- a/client/src/components/ContentBlock.vue +++ b/client/src/components/ContentBlock.vue @@ -1,6 +1,6 @@