File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed
src/components/AnalyticalTable Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 577577 </WithStyles(Pagination)>
578578 </div>
579579 <CustomLoadingComponent loading={false} loadingText="Loading...">
580- <div className="-loading">
581- <BusyIndicator size="Large" >
582- <ui5-busyindicator size="Large" class="" />
580+ <div className="-loading" style={{...}} >
581+ <BusyIndicator size="Medium" active={true} style={{...}} >
582+ <ui5-busyindicator active={true} size="Medium" style={{...}} class="" />
583583 </BusyIndicator>
584584 </div>
585585 </CustomLoadingComponent>
11851185 </WithStyles(Pagination)>
11861186 </div>
11871187 <CustomLoadingComponent loading={false} loadingText="Loading...">
1188- <div className="-loading">
1189- <BusyIndicator size="Large" >
1190- <ui5-busyindicator size="Large" class="" />
1188+ <div className="-loading" style={{...}} >
1189+ <BusyIndicator size="Medium" active={true} style={{...}} >
1190+ <ui5-busyindicator active={true} size="Medium" style={{...}} class="" />
11911191 </BusyIndicator>
11921192 </div>
11931193 </CustomLoadingComponent>
Original file line number Diff line number Diff line change @@ -12,15 +12,16 @@ import { ColumnHeader } from './columnHeader';
1212import { Pagination } from './pagination' ;
1313import { TitleBar } from './titleBar' ;
1414import { FilterEntry } from './types/FilterEntry' ;
15+ import { BusyIndicatorType } from '../../lib/BusyIndicatorType' ;
1516
1617const CustomLoadingComponent = ( props ) => {
1718 let className = '-loading' ;
1819 if ( props . loading ) {
1920 className += ' -active' ;
2021 }
2122 return (
22- < div className = { className } >
23- < BusyIndicator />
23+ < div className = { className } style = { { display : 'flex' , justifyContent : 'center' , alignItems : 'center' } } >
24+ < BusyIndicator size = { BusyIndicatorType . Medium } active style = { { backgroundColor : 'transparent' } } />
2425 </ div >
2526 ) ;
2627} ;
You can’t perform that action at this time.
0 commit comments