diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-04-13 21:46:20 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-04-13 21:46:20 -0400 |
commit | 130e26103461f23a2d8b57ea2eef6b17eefb8f8e (patch) | |
tree | 7d3e6b5cb58ed6ada84cc7f33b58ae94608cb3e7 /src/new_fields/documentSchemas.ts | |
parent | 14b3f6b3580b1987bdf9f8f865a79087e801d367 (diff) |
updated childDetailedView stuff for pivot view
Diffstat (limited to 'src/new_fields/documentSchemas.ts')
-rw-r--r-- | src/new_fields/documentSchemas.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/new_fields/documentSchemas.ts b/src/new_fields/documentSchemas.ts index b11941f40..bc63e9df8 100644 --- a/src/new_fields/documentSchemas.ts +++ b/src/new_fields/documentSchemas.ts @@ -74,7 +74,7 @@ export const positionSchema = createSchema({ export const collectionSchema = createSchema({ childLayout: Doc, // layout template for children of a collecion - childDetailed: Doc, // layout template to apply to a child when its clicked on in a collection and opened (requires onChildClick or other script to use this field) + childDetailView: Doc, // layout template to apply to a child when its clicked on in a collection and opened (requires onChildClick or other script to use this field) onChildClick: ScriptField, // script to run for each child when its clicked onCheckedClick: ScriptField, // script to run when a checkbox is clicked next to a child in a tree view }); |