Merge pull request #28916 from backstage/rugvip/ids
catalog-react: allow any group ID in addition to default ones
This commit is contained in:
@@ -434,6 +434,7 @@ const _default: FrontendPlugin<
|
||||
defaultPath: string;
|
||||
defaultTitle: string;
|
||||
defaultGroup?:
|
||||
| (string & {})
|
||||
| 'documentation'
|
||||
| 'development'
|
||||
| 'deployment'
|
||||
@@ -504,6 +505,7 @@ const _default: FrontendPlugin<
|
||||
defaultPath: string;
|
||||
defaultTitle: string;
|
||||
defaultGroup?:
|
||||
| (string & {})
|
||||
| 'documentation'
|
||||
| 'development'
|
||||
| 'deployment'
|
||||
|
||||
@@ -246,6 +246,7 @@ export const EntityContentBlueprint: ExtensionBlueprint<{
|
||||
defaultPath: string;
|
||||
defaultTitle: string;
|
||||
defaultGroup?:
|
||||
| (string & {})
|
||||
| 'documentation'
|
||||
| 'development'
|
||||
| 'deployment'
|
||||
|
||||
@@ -70,7 +70,7 @@ export const EntityContentBlueprint = createExtensionBlueprint({
|
||||
loader: () => Promise<JSX.Element>;
|
||||
defaultPath: string;
|
||||
defaultTitle: string;
|
||||
defaultGroup?: keyof typeof defaultEntityContentGroups;
|
||||
defaultGroup?: keyof typeof defaultEntityContentGroups | (string & {});
|
||||
routeRef?: RouteRef;
|
||||
filter?:
|
||||
| typeof entityFilterFunctionDataRef.T
|
||||
|
||||
@@ -734,6 +734,7 @@ const _default: FrontendPlugin<
|
||||
defaultPath: string;
|
||||
defaultTitle: string;
|
||||
defaultGroup?:
|
||||
| (string & {})
|
||||
| 'documentation'
|
||||
| 'development'
|
||||
| 'deployment'
|
||||
|
||||
@@ -120,6 +120,7 @@ const _default: FrontendPlugin<
|
||||
defaultPath: string;
|
||||
defaultTitle: string;
|
||||
defaultGroup?:
|
||||
| (string & {})
|
||||
| 'documentation'
|
||||
| 'development'
|
||||
| 'deployment'
|
||||
|
||||
@@ -255,6 +255,7 @@ const _default: FrontendPlugin<
|
||||
defaultPath: string;
|
||||
defaultTitle: string;
|
||||
defaultGroup?:
|
||||
| (string & {})
|
||||
| 'documentation'
|
||||
| 'development'
|
||||
| 'deployment'
|
||||
|
||||
Reference in New Issue
Block a user