aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordg314 <david_grossman@brown.edu>2021-10-26 14:30:45 -0400
committerdg314 <david_grossman@brown.edu>2021-10-26 14:30:45 -0400
commit21119bf271f9291265bbbc6e2bd4ef26f3fc0762 (patch)
treea8b13f7eaeb01bffed68c5801e606f54c1cb2ec6
parenta646731204c808d7d2e24cd2dd4b4aec4752a516 (diff)
update
-rw-r--r--src/client/views/search/SearchBox.tsx6
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));