diff options
Diffstat (limited to 'src/new_fields/Proxy.ts')
-rw-r--r-- | src/new_fields/Proxy.ts | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/new_fields/Proxy.ts b/src/new_fields/Proxy.ts index 230e4ab8b..38d874a68 100644 --- a/src/new_fields/Proxy.ts +++ b/src/new_fields/Proxy.ts @@ -48,23 +48,21 @@ export class ProxyField<T extends RefField> extends ObjectField { private failed = false; private promise?: Promise<any>; - value(callback?: ((field: T | undefined) => void)): T | undefined | FieldWaiting { + value(): T | undefined | FieldWaiting { if (this.cache) { - callback && callback(this.cache); return this.cache; } if (this.failed) { 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; return field; })); } - callback && this.promise.then(callback); return this.promise; } } |