Skip to content

Commit

Permalink
fix: #643 (#650)
Browse files Browse the repository at this point in the history
  • Loading branch information
3lang3 authored Jun 1, 2023
1 parent f4c8318 commit a64eeb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-vant/src/components/dialog/Dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const Dialog: React.FC<DialogProps> = props => {
className={clsx(bem('confirm'), {
[BORDER_LEFT]: props.showCancelButton,
})}
round={theme === 'round-button'}
round={theme === 'round-button' || undefined}
style={{ color: props.confirmButtonColor }}
loading={props.confirmProps?.loading}
disabled={props.confirmProps?.disabled}
Expand Down

0 comments on commit a64eeb9

Please sign in to comment.