diff options
author | dg314 <david_grossman@brown.edu> | 2021-10-26 14:30:45 -0400 |
---|---|---|
committer | dg314 <david_grossman@brown.edu> | 2021-10-26 14:30:45 -0400 |
commit | 21119bf271f9291265bbbc6e2bd4ef26f3fc0762 (patch) | |
tree | a8b13f7eaeb01bffed68c5801e606f54c1cb2ec6 /src | |
parent | a646731204c808d7d2e24cd2dd4b4aec4752a516 (diff) |
update
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/search/SearchBox.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/views/search/SearchBox.tsx b/src/client/views/search/SearchBox.tsx index 57c9a3d46..fe297782c 100644 --- a/src/client/views/search/SearchBox.tsx +++ b/src/client/views/search/SearchBox.tsx @@ -330,9 +330,9 @@ export class SearchBox extends ViewBoxBaseComponent<SearchBoxProps, SearchBoxDoc /** * @param {Doc} doc - doc for which keys are returned - * - * This method returns a list of a document doc's keys. - */ + * + * This method returns a list of a document doc's keys. + */ static documentKeys(doc: Doc) { const keys: { [key: string]: boolean } = {}; Doc.GetAllPrototypes(doc).map(proto => Object.keys(proto).forEach(key => keys[key] = false)); |