diff --git a/components/time-picker/index.tsx b/components/time-picker/index.tsx index fd74ee6e1d..25ff1df6c9 100644 --- a/components/time-picker/index.tsx +++ b/components/time-picker/index.tsx @@ -118,7 +118,7 @@ export default class TimePicker extends React.Component { {...props} className={className} value={this.state.value} - placeholder={props.placeholder || this.getLocale().placeholder} + placeholder={props.placeholder === undefined ? this.getLocale().placeholder : props.placeholder} showHour={props.format.indexOf('HH') > -1} showMinute={props.format.indexOf('mm') > -1} showSecond={props.format.indexOf('ss') > -1}