Merge pull request #12005 from gregorytalita/fix/github-open-pull-requests-board

fix: removed unnecessary filter on spec.type at Github Open Pull Requests Board plugin
This commit is contained in:
Johan Haals
2022-06-15 09:33:17 +02:00
committed by GitHub
2 changed files with 5 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-github-pull-requests-board': patch
---
Fix bug on fetching teams repositories where were being filtered by type service unnecessarily
@@ -27,7 +27,6 @@ export function useUserRepositories() {
const entitiesList = await catalogApi.getEntities({
filter: {
kind: 'Component',
'spec.type': 'service',
'spec.owner': teamEntity?.metadata?.name,
},
});