Add fixmes
This commit is contained in:
parent
4fc896c224
commit
d061116585
|
|
@ -59,9 +59,11 @@
|
|||
|
||||
computed: {
|
||||
bookmarked() {
|
||||
// fixme: make indented sub-contents work
|
||||
return this.bookmarks && !!this.bookmarks.find(bookmark => bookmark.uuid === this.component.id);
|
||||
},
|
||||
note() {
|
||||
// fixme: make indented sub-contents work
|
||||
const bookmark = this.bookmarks && this.bookmarks.find(bookmark => bookmark.uuid === this.component.id);
|
||||
return bookmark && bookmark.note;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -35,6 +35,7 @@
|
|||
|
||||
computed: {
|
||||
contentBlocks() {
|
||||
// fixme: make indented sub-contents work
|
||||
return this.contents.map(contentBlock => {
|
||||
return Object.assign({}, contentBlock, {
|
||||
contents: [...contentBlock.value],
|
||||
|
|
|
|||
Loading…
Reference in New Issue