diff options
author | bob <bcz@cs.brown.edu> | 2020-02-06 09:25:50 -0500 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2020-02-06 09:25:50 -0500 |
commit | 714e66d2916971b5b023ba33c20b8794c1d536e2 (patch) | |
tree | 56c65f8490305e70635df0aa7726c98a73f6c452 /src/new_fields/documentSchemas.ts | |
parent | bc2798dbab082c381f7af1aa7b5ed2b6027c45aa (diff) |
fixed unsetting of dropAction in buxton layouts.
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 0b3bd6338..1aed5c242 100644 --- a/src/new_fields/documentSchemas.ts +++ b/src/new_fields/documentSchemas.ts @@ -8,7 +8,7 @@ export const documentSchema = createSchema({ layoutKey: "string", // holds the field key for the field that actually holds the current lyoat layout_custom: Doc, // used to hold a custom layout (there's nothing special about this field .. any field could hold a custom layout that can be selected by setting 'layoutKey') title: "string", // document title (can be on either data document or layout) - _dropAction: "string", // override specifying what should happen when this document is dropped (can be "alias" or "copy") + dropAction: "string", // override specifying what should happen when this document is dropped (can be "alias" or "copy") _nativeWidth: "number", // native width of document which determines how much document contents are scaled when the document's width is set _nativeHeight: "number", // " _width: "number", // width of document in its container's coordinate system |