diff --git a/app/imports/api/parenting/parentingFunctions.ts b/app/imports/api/parenting/parentingFunctions.ts index b2ec13ac..fad6a6ba 100644 --- a/app/imports/api/parenting/parentingFunctions.ts +++ b/app/imports/api/parenting/parentingFunctions.ts @@ -87,13 +87,15 @@ type FilteredDoc = { _ancestorOfMatchedDocument?: boolean, } & TreeDoc; -export default async function filterToForest( +export async function filterToForest( collection: Mongo.Collection, rootId: string, filter: Mongo.Selector, - options: Mongo.Options = {}, - includeFilteredDocAncestors = false, - includeFilteredDocDescendants = false + { + options = >{}, + includeFilteredDocAncestors = false, + includeFilteredDocDescendants = false + } = {} ): Promise[]> { // Setup the filter let collectionFilter = { diff --git a/app/imports/client/ui/creature/character/CharacterSheetFab.vue b/app/imports/client/ui/creature/character/CharacterSheetFab.vue index da68e855..f703cdd9 100644 --- a/app/imports/client/ui/creature/character/CharacterSheetFab.vue +++ b/app/imports/client/ui/creature/character/CharacterSheetFab.vue @@ -40,7 +40,6 @@