diff options
author | bobzel <zzzman@gmail.com> | 2024-08-26 16:46:13 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-08-26 16:46:13 -0400 |
commit | 3f31aaa6b667e7b5f31b2f2b4e13a0879348602c (patch) | |
tree | 0f3444b5eb7baab21a1613d3538030296495fff0 /src/client/util/CurrentUserUtils.ts | |
parent | d12b43191e01e837d5a144fb19d9d3cd8eadd777 (diff) |
added recognizeFaces for face images
Diffstat (limited to 'src/client/util/CurrentUserUtils.ts')
-rw-r--r-- | src/client/util/CurrentUserUtils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/CurrentUserUtils.ts b/src/client/util/CurrentUserUtils.ts index 0681a21cb..dc0c95121 100644 --- a/src/client/util/CurrentUserUtils.ts +++ b/src/client/util/CurrentUserUtils.ts @@ -497,7 +497,7 @@ pie title Minerals in my tap water static setupFaceCollection(doc: Doc, field: string) { return DocUtils.AssignDocField(doc, field, (opts) => Docs.Create.FaceCollectionDocument(opts), { - dontRegisterView: true, backgroundColor: "dimgray", ignoreClick: true, title: "Face Collection", isSystem: true, childDragAction: dropActionType.embed, + dontRegisterView: true, ignoreClick: true, title: "Face Collection", isSystem: true, childDragAction: dropActionType.embed, _lockedPosition: true, _type_collection: CollectionViewType.Schema }); } |