@@ -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 @@