Merge pull request #31683 from beverts312/techdocs-schema

fix(techdocs): use correct type for additionalAllowedUriProtocols
This commit is contained in:
Fredrik Adelöw
2025-12-13 19:34:13 +01:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-techdocs': patch
---
Fixed schema type for additionalAllowedURIProtocols
+1 -1
View File
@@ -67,7 +67,7 @@ export interface Config {
* @see: https://raw.githubusercontent.com/cure53/DOMPurify/master/src/regexp.ts
* @visibility frontend
*/
additionalAllowedURIProtocols?: string;
additionalAllowedURIProtocols?: string[];
};
};
}