diff options
author | anika <anika.ahluwalia@gmail.com> | 2021-02-11 16:08:43 -0500 |
---|---|---|
committer | anika <anika.ahluwalia@gmail.com> | 2021-02-11 16:08:43 -0500 |
commit | 77b7c3927c454a829d7dbb2748ad322b146265a7 (patch) | |
tree | 2c83cced52fabb83c030ee38b8150d5f964fcefe /src/fields/Doc.ts | |
parent | aede6226aa367ff3137b126e0d0e23e1b2ca84db (diff) | |
parent | ee3561896e1bbfae4f81bce109fa3df2618cfbc8 (diff) |
Merge branch 'filters' of https://github.com/browngraphicslab/Dash-Web into filters
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(() => { |