aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/formattedText/DashFieldView.tsx
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2020-07-28 01:05:19 -0400
committerBob Zeleznik <zzzman@gmail.com>2020-07-28 01:05:19 -0400
commitec3a3adb0f9c6706e963432170d59bf54f95702c (patch)
tree7c2cd91c51602bb6db1b3ec9f23f280562d49a04 /src/client/views/nodes/formattedText/DashFieldView.tsx
parent622ba99eff99f9af2e03c3a5f8a47e9ce95cdf7e (diff)
chaned # text syntax to create a field startin with #. chaned pivot views to aggreate #keys as if the value were the key after the #
Diffstat (limited to 'src/client/views/nodes/formattedText/DashFieldView.tsx')
-rw-r--r--src/client/views/nodes/formattedText/DashFieldView.tsx4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/client/views/nodes/formattedText/DashFieldView.tsx b/src/client/views/nodes/formattedText/DashFieldView.tsx
index 8718bf329..958a37568 100644
--- a/src/client/views/nodes/formattedText/DashFieldView.tsx
+++ b/src/client/views/nodes/formattedText/DashFieldView.tsx
@@ -205,9 +205,7 @@ export class DashFieldViewInternal extends React.Component<IDashFieldViewInterna
{this._fieldKey}
</span>}
- {/* <div className="dashFieldView-fieldSpan"> */}
- {this.fieldValueContent}
- {/* </div> */}
+ {this.props.fieldKey.startsWith("#") ? (null) : this.fieldValueContent}
{!this._showEnumerables ? (null) : <div className="dashFieldView-enumerables" onPointerDown={this.onPointerDownEnumerables} />}