File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
src/components/Wizards/CreateManagedControlPlane Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import Loading from '../../Shared/Loading.tsx';
66import { CreateManagedControlPlaneWizardContainer } from './CreateManagedControlPlaneWizardContainer.tsx' ;
77import { PROJECT_NAME_LABEL , WORKSPACE_LABEL } from '../../../lib/api/types/shared/keyNames.ts' ;
88import { ManagedControlPlaneInterface } from './mcp_type.ts' ;
9+ import { BusyIndicator } from '@ui5/webcomponents-react' ;
910
1011export type EditManagedControlPlaneWizardDataLoaderProps = {
1112 workspaceName ?: string ;
@@ -26,10 +27,11 @@ export const EditManagedControlPlaneWizardDataLoader: FC<EditManagedControlPlane
2627 true ,
2728 ! isOpen ,
2829 ) ;
30+
2931 if ( isLoading ) {
3032 return (
3133 < div className = { styles . absolute } >
32- < Loading />
34+ < BusyIndicator active />
3335 </ div >
3436 ) ;
3537 }
You can’t perform that action at this time.
0 commit comments