diff options
author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-03-18 14:05:37 -0400 |
---|---|---|
committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-03-18 14:05:37 -0400 |
commit | 1ae0ba5addbcf3d527f1e75cc895aaf023063a7d (patch) | |
tree | 6034a1223184e86533af7ef1481509b30c8db311 /src/fields/Document.ts | |
parent | 6cc582d85317c35908d313b4f129617073c5ccac (diff) |
Cleaned up field view
Diffstat (limited to 'src/fields/Document.ts')
-rw-r--r-- | src/fields/Document.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fields/Document.ts b/src/fields/Document.ts index 5f0889786..be0137128 100644 --- a/src/fields/Document.ts +++ b/src/fields/Document.ts @@ -310,6 +310,7 @@ export class Document extends Field { throw new Error("Method not implemented."); } GetValue() { + return this.Title; var title = (this._proxies.has(KeyStore.Title.Id) ? "???" : this.Title) + "(" + this.Id + ")"; return title; //throw new Error("Method not implemented."); |