Skip to content

Commit 7f8ff79

Browse files
committed
Fix print and save
After #28 and #32, the date format changed to become commentable. However, the `printAndSave` functionality was not updated to reflect this change... Until now.
1 parent adc4758 commit 7f8ff79

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/utils/print-and-save.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ function getPrintAgendaData() {
8686
return {
8787
version: '1.0',
8888
data: {
89-
date: getRichTextRecordContent(rootRecord.get('date')),
89+
date:
90+
getRichTextRecordContent(rootRecord.get('date').get('value')),
9091
// TODO (#12): Use site preferences to store officer names instead
9192
// of hard-coding.
9293
officers: {

0 commit comments

Comments
 (0)