Skip to content

Commit dd7341a

Browse files
committed
feature/CDCTOOLBOX-377 - Fix progress bar indicator
1 parent 563d75e commit dd7341a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/routes/site-deployer/site-deployer.component.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ const SiteDeployer = ({ t }) => {
270270
)
271271

272272
const showProgressBar = () => {
273-
return <div>{<ProgressIndicator value={progressIndicatorValue} valueState={ValueState.Information} className={classes.progressIndicatorStyle} />}</div>
273+
return <div>{<ProgressIndicator value={progressIndicatorValue} className={classes.progressIndicatorStyle} />}</div>
274274
}
275275

276276
return (

src/routes/site-deployer/site-deployer.styles.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
* License: Apache-2.0
44
*/
55

6-
76
import { spacing } from '@ui5/webcomponents-react-base'
87

98
const styles = {
@@ -90,6 +89,9 @@ const styles = {
9089
width: '98%',
9190
position: 'relative',
9291
margin: 'var(--_ui5_card_header_padding)',
92+
paddingLeft: '2%',
93+
paddingRight: '0%',
94+
boxSizing: 'border-box',
9395
},
9496
errorListOuterDivStyle: {
9597
...spacing.sapUiSmallMargin,

0 commit comments

Comments
 (0)