diff options
author | usodhi <61431818+usodhi@users.noreply.github.com> | 2021-03-03 19:53:10 -0500 |
---|---|---|
committer | usodhi <61431818+usodhi@users.noreply.github.com> | 2021-03-03 19:53:10 -0500 |
commit | b109537848c7df62d3bbc9bbe2fbd59f09920c63 (patch) | |
tree | c502b31501a01df4a836c03749d686ce575ea1ab /src/fields/util.ts | |
parent | 59044880fcf0eb5ed4ca164de4c533fb7e6378a7 (diff) | |
parent | 524bb41d2d5a74dc00d26e7abc079574e10a52a7 (diff) |
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web into filters
Diffstat (limited to 'src/fields/util.ts')
-rw-r--r-- | src/fields/util.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fields/util.ts b/src/fields/util.ts index 36c765dd0..5d98971da 100644 --- a/src/fields/util.ts +++ b/src/fields/util.ts @@ -302,7 +302,7 @@ export function setter(target: any, in_prop: string | symbol | number, value: an } export function getter(target: any, in_prop: string | symbol | number, receiver: any): any { - let prop = in_prop; + const prop = in_prop; if (in_prop === AclSym) return target[AclSym]; if (in_prop === "toString" || (in_prop !== HeightSym && in_prop !== WidthSym && in_prop !== LayoutSym && typeof prop === "symbol")) return target.__fields[prop] || target[prop]; |