Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/input-moment.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ export default class InputMoment extends Component {
<button
type="button"
className={cx('ion-calendar im-btn', { 'is-active': tab === 0 })}
onClick={() => this.handleClickTab(0)}
onClick={(e) => this.handleClickTab(0, e)}
>
Date
</button>
<button
type="button"
className={cx('ion-clock im-btn', { 'is-active': tab === 1 })}
onClick={() => this.handleClickTab(1)}
onClick={(e) => this.handleClickTab(1, e)}
>
Time
</button>
Expand Down