diff options
author | usodhi <61431818+usodhi@users.noreply.github.com> | 2021-02-01 18:40:01 -0500 |
---|---|---|
committer | usodhi <61431818+usodhi@users.noreply.github.com> | 2021-02-01 18:40:01 -0500 |
commit | 6f1fa5e8211518cbb6ebff5cb6849101e36983ab (patch) | |
tree | d18076f6158708faf7663b31cc0afcf9ea5ba937 /src/fields/Doc.ts | |
parent | e3db0536ad0086a328ee353be1c4dfd34ba03e02 (diff) |
filters changes
Diffstat (limited to 'src/fields/Doc.ts')
-rw-r--r-- | src/fields/Doc.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fields/Doc.ts b/src/fields/Doc.ts index 9aacf5375..493dd2ba4 100644 --- a/src/fields/Doc.ts +++ b/src/fields/Doc.ts @@ -1062,7 +1062,7 @@ export namespace Doc { // all documents with the specified value for the specified key are included/excluded // based on the modifiers :"check", "x", undefined export function setDocFilter(target: Opt<Doc>, key: string, value: any, modifiers?: "remove" | "match" | "check" | "x" | undefined) { - console.log("m8"); + // console.log(key, value, modifiers); const container = target ?? CollectionDockingView.Instance.props.Document; const docFilters = Cast(container._docFilters, listSpec("string"), []); runInAction(() => { |