Merge pull request #29140 from alex-mckay/updateSearchKindFilter

use all 'Kinds' from system model in search filter
This commit is contained in:
Alex Lorenzi
2025-03-12 09:37:39 -04:00
committed by GitHub
2 changed files with 16 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-search': patch
---
Expand the default kind filter to include all kinds from the System Model.
+11 -1
View File
@@ -204,7 +204,17 @@ export const searchPage = PageBlueprint.makeWithOverrides({
className={classes.filter}
label="Kind"
name="kind"
values={['Component', 'Template']}
values={[
'API',
'Component',
'Domain',
'Group',
'Location',
'Resource',
'System',
'Template',
'User',
]}
/>
<SearchFilter.Checkbox
className={classes.filter}