diff options
author | bobzel <zzzman@gmail.com> | 2020-08-22 19:44:02 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-22 19:44:02 -0400 |
commit | ff5994377a80ec76c0138c5966f43a5bbce6e8b3 (patch) | |
tree | c13e11c83d585ce16458bac6f09e84900692cabf /src/Utils.ts | |
parent | a2e794def459f176a69bd4f3bab7e0a180e72d26 (diff) |
more search cleanup. searches over dashboards, not collections now. fixed drag-off filters to still work with collections.
Diffstat (limited to 'src/Utils.ts')
-rw-r--r-- | src/Utils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Utils.ts b/src/Utils.ts index 3ff05104f..5b5a06839 100644 --- a/src/Utils.ts +++ b/src/Utils.ts @@ -422,7 +422,7 @@ export function returnEmptyString() { return ""; } export function returnEmptyFilter() { return [] as string[]; } -export function returnEmptyDoclist() { return [] as Doc[]; } +export function returnEmptyDoclist() { return [] as any[]; } export let emptyPath = []; |