We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a486d7c commit 34dad3dCopy full SHA for 34dad3d
clients/admin-ui/src/features/data-discovery-and-detection/action-center/fields/ClassificationSelect.tsx
@@ -14,7 +14,7 @@ const ClassificationSelect = ({
14
}: { onSelectDataCategory: (value: string) => void } & TaxonomySelectProps) => {
15
const { getDataCategoryDisplayNameProps, getDataCategories } =
16
useTaxonomies();
17
- const dataCategories = getDataCategories();
+ const dataCategories = getDataCategories().filter((c) => c.active);
18
const [open, setOpen] = useState(false);
19
20
const options: TaxonomySelectOption[] = dataCategories.map((dataCategory) => {
0 commit comments