From eb26b2f59d115e4249440a2339b232f2e47166e4 Mon Sep 17 00:00:00 2001 From: Swaroop Jagadish <67564030+swaroopjagadish@users.noreply.github.com> Date: Sun, 22 Aug 2021 11:52:43 -0700 Subject: [PATCH] fix(glossary): Make terms searchable and browseable (#3140) --- .../src/app/entity/glossaryTerm/GlossaryTermEntity.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/datahub-web-react/src/app/entity/glossaryTerm/GlossaryTermEntity.tsx b/datahub-web-react/src/app/entity/glossaryTerm/GlossaryTermEntity.tsx index 14a4803155..621d279210 100644 --- a/datahub-web-react/src/app/entity/glossaryTerm/GlossaryTermEntity.tsx +++ b/datahub-web-react/src/app/entity/glossaryTerm/GlossaryTermEntity.tsx @@ -30,9 +30,9 @@ export class GlossaryTermEntity implements Entity { ); }; - isSearchEnabled = () => false; + isSearchEnabled = () => true; - isBrowseEnabled = () => false; + isBrowseEnabled = () => true; getAutoCompleteFieldName = () => 'name';