fix filter in createConfigSecretEnumerator
Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/backend-app-api': patch
|
||||
---
|
||||
|
||||
Make sure to not filter out schemas in `createConfigSecretEnumerator`
|
||||
@@ -42,7 +42,7 @@ export async function createConfigSecretEnumerator(options: {
|
||||
const schema =
|
||||
options.schema ??
|
||||
(await loadConfigSchema({
|
||||
dependencies: packages.map(p => p.packageJson.name).filter(() => false),
|
||||
dependencies: packages.map(p => p.packageJson.name),
|
||||
}));
|
||||
|
||||
return (config: Config) => {
|
||||
|
||||
Reference in New Issue
Block a user