aboutsummaryrefslogtreecommitdiff
path: root/src/client/util
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2025-07-08 11:15:28 -0400
committerbobzel <zzzman@gmail.com>2025-07-08 11:15:28 -0400
commitaf8383097b69c317fdaae44a387d4872f77687e5 (patch)
tree23f11a499496f302cdf0b71b545b4f2f32fd872e /src/client/util
parent2cc49aaefdf2e8910be2debbe9653a1f9337b35c (diff)
parentfbbf2933418cc9a4434cfc873b88d04a392cd8e9 (diff)
Merge branch 'master' into lanyi-expanded-agent-paper-main
Diffstat (limited to 'src/client/util')
-rw-r--r--src/client/util/SearchUtil.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/SearchUtil.ts b/src/client/util/SearchUtil.ts
index 2f23d07dc..8077445f6 100644
--- a/src/client/util/SearchUtil.ts
+++ b/src/client/util/SearchUtil.ts
@@ -59,7 +59,7 @@ export namespace SearchUtil {
* An array of all field names used by the Doc or its prototypes.
*/
export function documentKeys(doc: Doc) {
- return Object.keys(Doc.GetAllPrototypes(doc).filter(proto => proto).reduce(
+ return Array.from(Doc.GetAllPrototypes(doc).filter(proto => proto).reduce(
(keys, proto) => {
Object.keys(proto).forEach(keys.add.bind(keys));
return keys;