diff options
Diffstat (limited to 'src/new_fields/util.ts')
-rw-r--r-- | src/new_fields/util.ts | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/new_fields/util.ts b/src/new_fields/util.ts index 080123965..3ab1b299b 100644 --- a/src/new_fields/util.ts +++ b/src/new_fields/util.ts @@ -128,10 +128,6 @@ export function getter(target: any, in_prop: string | symbol | number, receiver: } if (target.__LAYOUT__) return target.__LAYOUT__[prop]; } - if (typeof prop === "string" && prop.startsWith("@")) { - const expanded = target.__fields["expandedTemplate"]; - if (expanded) return expanded.cache[target.__fields[prop.substring(1)]]; - } if (prop === "then") {//If we're being awaited return undefined; } |