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 577
577
</WithStyles(Pagination)>
578
578
</div>
579
579
<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="" />
583
583
</BusyIndicator>
584
584
</div>
585
585
</CustomLoadingComponent>
1185
1185
</WithStyles(Pagination)>
1186
1186
</div>
1187
1187
<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="" />
1191
1191
</BusyIndicator>
1192
1192
</div>
1193
1193
</CustomLoadingComponent>
Original file line number Diff line number Diff line change @@ -12,15 +12,16 @@ import { ColumnHeader } from './columnHeader';
12
12
import { Pagination } from './pagination' ;
13
13
import { TitleBar } from './titleBar' ;
14
14
import { FilterEntry } from './types/FilterEntry' ;
15
+ import { BusyIndicatorType } from '../../lib/BusyIndicatorType' ;
15
16
16
17
const CustomLoadingComponent = ( props ) => {
17
18
let className = '-loading' ;
18
19
if ( props . loading ) {
19
20
className += ' -active' ;
20
21
}
21
22
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' } } />
24
25
</ div >
25
26
) ;
26
27
} ;
You can’t perform that action at this time.
0 commit comments