Skip to content

Commit

Permalink
Fix #5003: ProgressBar apply classname to determinate (#5006)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Oct 2, 2023
1 parent 467b9ce commit dd9e906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/progressbar/ProgressBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const ProgressBar = React.memo(
const label = createLabel();
const rootProps = mergeProps(
{
className: cx('root'),
className: classNames(props.className, cx('root')),
style: props.style,
role: 'progressbar',
'aria-valuemin': '0',
Expand Down

0 comments on commit dd9e906

Please sign in to comment.