diff options
author | bobzel <zzzman@gmail.com> | 2024-02-10 20:29:27 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-02-10 20:29:27 -0500 |
commit | 1fcd36514f24fbd2f2591111f6038f8ebf4bc2d8 (patch) | |
tree | 0c5845f1b304ea83665df7fd7d7f564eca0c4bcb /src/client/documents/Documents.ts | |
parent | a60c3ecd243d293ff6843c4868fd953d465b45a1 (diff) |
minimal fix to get react date picker to work.
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 355a4c937..2d2f5fe4a 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -252,6 +252,7 @@ export class DocumentOptions { layout_hideDecorationTitle?: BOOLt = new BoolInfo('whether to suppress the document decortations title when selected'); _layout_hideContextMenu?: BOOLt = new BoolInfo('whether the context menu can be shown'); layout_borderRounding?: string; + _layout_modificationDate?: DATEt = new DateInfo('last modification date of doc layout', false); _layout_nativeDimEditable?: BOOLt = new BoolInfo('native dimensions can be modified using document decoration reizers', false); _layout_reflowVertical?: BOOLt = new BoolInfo('native height can be changed independent of width by dragging decoration resizers'); _layout_reflowHorizontal?: BOOLt = new BoolInfo('whether a doc with a native size can be horizonally resized, causing some form of reflow'); |