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