This commit is contained in:
josh-sanders 2025-03-13 23:56:37 +10:00
parent b1fb710229
commit af4942357f
6 changed files with 6 additions and 6 deletions

View File

@ -54,7 +54,7 @@ const defaultOptions: GraphOptions = {
focusOnHover: true,
enableRadial: true,
},
hideOnRoot: false
hideOnRoot: false,
}
```

View File

@ -6,7 +6,7 @@ interface ArticleTitleOptions {
}
const defaultOptions: ArticleTitleOptions = {
hideOnRoot: false
hideOnRoot: false,
}
export default ((opts?: Partial<ArticleTitleOptions>) => {

View File

@ -12,7 +12,7 @@ interface BacklinksOptions {
const defaultOptions: BacklinksOptions = {
hideWhenEmpty: true,
hideOnRoot: false
hideOnRoot: false,
}
export default ((opts?: Partial<BacklinksOptions>) => {

View File

@ -18,7 +18,7 @@ interface ContentMetaOptions {
const defaultOptions: ContentMetaOptions = {
showReadingTime: true,
showComma: true,
hideOnRoot: false
hideOnRoot: false,
}
export default ((opts?: Partial<ContentMetaOptions>) => {

View File

@ -49,7 +49,7 @@ const defaultOptions: Options = {
},
filterFn: (node) => node.slugSegment !== "tags",
order: ["filter", "map", "sort"],
hideOnRoot: false
hideOnRoot: false,
}
export type FolderState = {

View File

@ -58,7 +58,7 @@ const defaultOptions: GraphOptions = {
focusOnHover: true,
enableRadial: true,
},
hideOnRoot: false
hideOnRoot: false,
}
export default ((opts?: Partial<GraphOptions>) => {