diff options
| author | bobzel <zzzman@gmail.com> | 2020-09-01 17:43:59 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-09-01 17:43:59 -0400 |
| commit | 25d8d43425785038a74acbc9be618b70f48bbba0 (patch) | |
| tree | 25bd1dde9b13b113a7738a34d6f4dd5aace5e4c6 /src/client/views/collections | |
| parent | 4bdb3b64c476ffdc5b5c53c9c296c50ce68a8fc5 (diff) | |
fixed search bar getting stuck open. fixed search for fields in full db.
Diffstat (limited to 'src/client/views/collections')
| -rw-r--r-- | src/client/views/collections/CollectionSchemaHeaders.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/views/collections/CollectionSchemaHeaders.tsx b/src/client/views/collections/CollectionSchemaHeaders.tsx index cecee1de3..94f9d4f92 100644 --- a/src/client/views/collections/CollectionSchemaHeaders.tsx +++ b/src/client/views/collections/CollectionSchemaHeaders.tsx @@ -352,7 +352,6 @@ export class KeysDropdown extends React.Component<KeysDropdownProps> { // if search term does not already exist as a group type, give option to create new group type if (this._key !== this._searchTerm.slice(0, this._key.length)) { - console.log("little further"); if (!exactFound && this._searchTerm !== "" && this.props.canAddNew) { options.push(<div key={""} className="key-option" style={{ border: "1px solid lightgray", width: this.props.width, maxWidth: this.props.width, overflowX: "hidden", background: "white", @@ -458,7 +457,6 @@ export class KeysDropdown extends React.Component<KeysDropdownProps> { updateFilter() { const filters = Cast(this.props.Document._docFilters, listSpec("string")); if (filters === undefined || filters.length === 0 || filters.includes(this._key) === false) { - console.log("PLEASE"); this.props.col.setColor("rgb(241, 239, 235)"); this.closeResultsVisibility = "none"; } |
