diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2020-05-20 17:56:42 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2020-05-20 17:56:42 -0400 |
| commit | f4b18882d8bd31272d5eb7555c9b80609715b935 (patch) | |
| tree | e33fe687d118be50c9805d04862b9f5af9866d8a /src/client/views/nodes/WebBox.tsx | |
| parent | c04da1528de48a1e911f5c8989f32bfd0138882b (diff) | |
cleaned up some warnings
Diffstat (limited to 'src/client/views/nodes/WebBox.tsx')
| -rw-r--r-- | src/client/views/nodes/WebBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/WebBox.tsx b/src/client/views/nodes/WebBox.tsx index c73b88ef7..f80cea941 100644 --- a/src/client/views/nodes/WebBox.tsx +++ b/src/client/views/nodes/WebBox.tsx @@ -164,7 +164,7 @@ export class WebBox extends ViewBoxAnnotatableComponent<FieldViewProps, WebDocum } urlHash(s: string) { - return s.split('').reduce((a: any, b: any) => { a = ((a << 5) - a) + b.charCodeAt(0); return a & a }, 0); + return s.split('').reduce((a: any, b: any) => { a = ((a << 5) - a) + b.charCodeAt(0); return a & a; }, 0); } @action submitURL = () => { |
