diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2019-03-21 01:53:03 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2019-03-21 01:53:03 -0400 |
| commit | 720ab936b4ee7d9eb19ce72e0f71b45e47905d21 (patch) | |
| tree | c360ea2c7b2c8fe42488b4e3442f921015240d47 /src/client/views/collections/CollectionFreeFormView.tsx | |
| parent | bece3110a3d6fa18dd89415a5e636c6792aea4e1 (diff) | |
| parent | 18ef731f66340c759f6818c923e1032bd5b84c7a (diff) | |
Merge branch 'master' into promises_and_user_document
Diffstat (limited to 'src/client/views/collections/CollectionFreeFormView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionFreeFormView.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/collections/CollectionFreeFormView.tsx b/src/client/views/collections/CollectionFreeFormView.tsx index 8bf4a7539..da9f7b392 100644 --- a/src/client/views/collections/CollectionFreeFormView.tsx +++ b/src/client/views/collections/CollectionFreeFormView.tsx @@ -219,13 +219,13 @@ export class CollectionFreeFormView extends CollectionViewBase { @computed get backgroundLayout(): string | undefined { let field = this.props.Document.GetT(KeyStore.BackgroundLayout, TextField); - if (field && field !== "<Waiting>") { + if (field && field !== FieldWaiting) { return field.Data; } } @computed get overlayLayout(): string | undefined { let field = this.props.Document.GetT(KeyStore.OverlayLayout, TextField); - if (field && field !== "<Waiting>") { + if (field && field !== FieldWaiting) { return field.Data; } } |
