File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -28687,7 +28687,8 @@ async function transform_blog(
2868728687 author: {
2868828688 name: doc.data.frontmatter.author,
2868928689 url: doc.data.frontmatter.authorURL,
28690- }
28690+ },
28691+ draft: doc.data.frontmatter.draft || false
2869128692 };
2869228693 })
2869328694 .sort((a, b) => (a.date.numeric < b.date.numeric ? 1 : -1));
Original file line number Diff line number Diff line change @@ -27450,7 +27450,8 @@ async function transform_blog(
2745027450 author: {
2745127451 name: doc.data.frontmatter.author,
2745227452 url: doc.data.frontmatter.authorURL,
27453- }
27453+ },
27454+ draft: doc.data.frontmatter.draft || false
2745427455 };
2745527456 })
2745627457 .sort((a, b) => (a.date.numeric < b.date.numeric ? 1 : -1));
You can’t perform that action at this time.
0 commit comments