Browse Source

Fixed story chapters being unresponsive if there are no comments.

master 1.3.0
Gisle Aune 5 years ago
parent
commit
853076fd5e
  1. 8
      marko/page/story-content/components/create-comment-modal/component.js

8
marko/page/story-content/components/create-comment-modal/component.js

@ -30,9 +30,11 @@ module.exports = class {
const comments = this.input.chapter.comments || []
const lastComment = comments[comments.length - 1]
let date = lastComment.fictionalDate || chapter.fictionalDate
if (date != null) {
this.change("fictionalDate", {target: {value: moment(date).format("MMM D, YYYY")}})
if (lastComment != null) {
let date = lastComment.fictionalDate || this.input.chapter.fictionalDate
if (date != null) {
this.change("fictionalDate", {target: {value: moment(date).format("MMM D, YYYY")}})
}
}
}

Loading…
Cancel
Save