aboutsummaryrefslogtreecommitdiff
path: root/src/new_fields/Proxy.ts
diff options
context:
space:
mode:
authorSam Wilkins <samuel_wilkins@brown.edu>2019-06-17 13:38:15 -0400
committerSam Wilkins <samuel_wilkins@brown.edu>2019-06-17 13:38:15 -0400
commitde0304b2966ebdede9d9db8c510e19020046115c (patch)
tree43ff84d63818109ca7af8147e16e91f240465b8f /src/new_fields/Proxy.ts
parenta3e1f7332e0cb96dae0abd80a2972ae74ac31104 (diff)
peripheral renaming fixes
Diffstat (limited to 'src/new_fields/Proxy.ts')
-rw-r--r--src/new_fields/Proxy.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/new_fields/Proxy.ts b/src/new_fields/Proxy.ts
index 130ec066e..230e4ab8b 100644
--- a/src/new_fields/Proxy.ts
+++ b/src/new_fields/Proxy.ts
@@ -57,7 +57,7 @@ export class ProxyField<T extends RefField> extends ObjectField {
return undefined;
}
if (!this.promise) {
- this.promise = DocServer.GetRefField(this.fieldId).then(action((field: any) => {
+ this.promise = DocServer.getRefField(this.fieldId).then(action((field: any) => {
this.promise = undefined;
this.cache = field;
if (field === undefined) this.failed = true;