aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionFreeFormView.tsx
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2019-03-20 22:08:32 -0400
committerBob Zeleznik <zzzman@gmail.com>2019-03-20 22:08:32 -0400
commitd882d4013dc2df03a55c3f4afc954b7d9a38b4e4 (patch)
tree38659deb4c37f48a8814fd76798c02eccc367465 /src/client/views/collections/CollectionFreeFormView.tsx
parentb639d1fdfc8dfe9b1ea300665b4b4d74929f8af7 (diff)
tree view cleanup
Diffstat (limited to 'src/client/views/collections/CollectionFreeFormView.tsx')
-rw-r--r--src/client/views/collections/CollectionFreeFormView.tsx4
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;
}
}