Skip to content

Commit

Permalink
Fix primefaces#5003: ProgressBar apply classname to determinate
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Oct 2, 2023
1 parent 5ed5e2e commit 76c37bd
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 76c37bd

Please sign in to comment.