File tree 2 files changed +2
-4
lines changed
pages/workflow_detail/resources
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ export const FlowFrameworkDashboardsApp = (props: Props) => {
62
62
< Workflows { ...routeProps } />
63
63
) }
64
64
/>
65
- { /* Defaulting to Workflow Management page */ }
65
+ { /* Defaulting to Workflows page */ }
66
66
< Route
67
67
path = { `${ APP_PATH . HOME } ` }
68
68
render = { ( routeProps : RouteComponentProps < WorkflowsRouterProps > ) => (
Original file line number Diff line number Diff line change @@ -21,9 +21,7 @@ interface ResourceListProps {
21
21
* The searchable list of resources for a particular workflow.
22
22
*/
23
23
export function ResourceList ( props : ResourceListProps ) {
24
- const [ allResources , setAllResources ] = useState < WorkflowResource [ ] > (
25
- props . workflow ?. resourcesCreated || [ ]
26
- ) ;
24
+ const [ allResources , setAllResources ] = useState < WorkflowResource [ ] > ( [ ] ) ;
27
25
28
26
// Hook to initialize all resources
29
27
useEffect ( ( ) => {
You can’t perform that action at this time.
0 commit comments