fix(glossary): Make terms searchable and browseable (#3140)

This commit is contained in:
Swaroop Jagadish 2021-08-22 11:52:43 -07:00 committed by GitHub
parent 72af0c317a
commit eb26b2f59d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,9 +30,9 @@ export class GlossaryTermEntity implements Entity<GlossaryTerm> {
); );
}; };
isSearchEnabled = () => false; isSearchEnabled = () => true;
isBrowseEnabled = () => false; isBrowseEnabled = () => true;
getAutoCompleteFieldName = () => 'name'; getAutoCompleteFieldName = () => 'name';