Skip to content

Commit

Permalink
fix: fix error in entityContent.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
Frida Jacobsson committed Dec 20, 2024
1 parent 74d83bf commit de9d356
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions plugins/jira-dashboard/src/alpha/entityContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,21 +29,15 @@ export const entityJiraContent = EntityContentBlueprint.makeWithOverrides({
optional: true,
}),
},
factory: (originalFactory, { inputs }) => {
factory: originalFactory => {
return originalFactory({
defaultPath: '/jira',
defaultTitle: 'Jira Dashboard',
filter: 'kind:component,group',
routeRef: convertLegacyRouteRef(rootRouteRef),
loader: async () =>
import('../components/JiraDashboardContent').then(m =>
compatWrapper(
<m.JiraDashboardContent
annotationPrefix={inputs.props?.get(
annotationPrefixExtensionDataRef.optional(),
)}
/>,
),
compatWrapper(<m.JiraDashboardContent />),
),
});
},
Expand Down

0 comments on commit de9d356

Please sign in to comment.