use all 'Kinds' from system model in search filter

Signed-off-by: Alex McKay <amckay@spotify.com>
This commit is contained in:
Alex McKay
2025-03-10 16:50:13 -04:00
parent 8aa63b60be
commit 49684fe254
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}