mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 03:26:22 +00:00
fix: make filter checks more strict (closes #1519)
This commit is contained in:
parent
1dc208356a
commit
b3a02909ba
2 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ import { QuartzFilterPlugin } from "../types"
|
|||
export const RemoveDrafts: QuartzFilterPlugin<{}> = () => ({
|
||||
name: "RemoveDrafts",
|
||||
shouldPublish(_ctx, [_tree, vfile]) {
|
||||
const draftFlag: boolean = vfile.data?.frontmatter?.draft || false
|
||||
const draftFlag: boolean = vfile.data?.frontmatter?.draft === true
|
||||
return !draftFlag
|
||||
},
|
||||
})
|
||||
|
|
|
@ -3,6 +3,6 @@ import { QuartzFilterPlugin } from "../types"
|
|||
export const ExplicitPublish: QuartzFilterPlugin = () => ({
|
||||
name: "ExplicitPublish",
|
||||
shouldPublish(_ctx, [_tree, vfile]) {
|
||||
return vfile.data?.frontmatter?.publish ?? false
|
||||
return vfile.data?.frontmatter?.publish === true
|
||||
},
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue