diff options
| author | bobzel <zzzman@gmail.com> | 2020-08-19 19:58:57 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-08-19 19:58:57 -0400 |
| commit | 093b9b03528a2187ac71db0945a031a8298b8002 (patch) | |
| tree | 2952c8157b6322e4997ae5774d7560f6448f3963 /src/client/views/nodes/formattedText/DashFieldView.tsx | |
| parent | 9ab88617231edf79b8f1a85e997d02a04ced85fd (diff) | |
fixed errors caused by Doc symFields not being variable functions and thus not having 'this' bound correctly.
Diffstat (limited to 'src/client/views/nodes/formattedText/DashFieldView.tsx')
| -rw-r--r-- | src/client/views/nodes/formattedText/DashFieldView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/formattedText/DashFieldView.tsx b/src/client/views/nodes/formattedText/DashFieldView.tsx index 8ae71c035..924079096 100644 --- a/src/client/views/nodes/formattedText/DashFieldView.tsx +++ b/src/client/views/nodes/formattedText/DashFieldView.tsx @@ -183,7 +183,7 @@ export class DashFieldViewInternal extends React.Component<IDashFieldViewInterna } if (container) { const alias = Doc.MakeAlias(container.props.Document); - alias.viewType = CollectionViewType.Time; + alias._viewType = CollectionViewType.Time; let list = Cast(alias._columnHeaders, listSpec(SchemaHeaderField)); if (!list) { alias._columnHeaders = list = new List<SchemaHeaderField>(); |
