diff options
| author | mehekj <mehek.jethani@gmail.com> | 2023-04-20 01:13:07 -0400 |
|---|---|---|
| committer | mehekj <mehek.jethani@gmail.com> | 2023-04-20 01:13:07 -0400 |
| commit | 79791c294e948bc5e9f5799b12dec138c7d8b371 (patch) | |
| tree | 10f97cf18889e7476a2ea97a0b87cd21ac470fc8 /src/client/documents | |
| parent | e80fda22e5c244bc6039f851bc84656afdd601cb (diff) | |
added schema cell types for images and dates
Diffstat (limited to 'src/client/documents')
| -rw-r--r-- | src/client/documents/Documents.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index bd878ca8a..c5b6546d7 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -68,10 +68,10 @@ class EmptyBox { return ''; } } -export abstract class FInfo { +export class FInfo { description: string = ''; readOnly: boolean = false; - fieldType?: string; + fieldType?: string = ''; values?: Field[]; // format?: string; // format to display values (e.g, decimal places, $, etc) // parse?: ScriptField; // parse a value from a string |
