Skip to content

Commit 9a3f14f

Browse files
authored
v0.15.1 (#169)
* package version * fix linter errors
1 parent 6c048e9 commit 9a3f14f

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "semantic-ui-calendar-react",
33
"sideEffects": false,
4-
"version": "0.15.0",
4+
"version": "0.15.1",
55
"description": "date/time picker built from semantic-ui elements",
66
"main": "dist/commonjs/index.js",
77
"scripts": {

src/inputs/TimeInput.tsx

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,19 @@ class TimeInput extends BaseInput<TimeInputProps, TimeInputState> {
9797
);
9898
}
9999

100-
private handleSelect = (e: React.SyntheticEvent<HTMLElement>,
101-
{ value }: BasePickerOnChangeData) => {
100+
private handleSelect = (
101+
e: React.SyntheticEvent<HTMLElement>,
102+
{ value }: BasePickerOnChangeData,
103+
) => {
104+
102105
tick(this.handleSelectUndelayed, e, { value });
103106
}
104107

105-
private handleSelectUndelayed = (e: React.SyntheticEvent<HTMLElement>,
106-
{ value }: BasePickerOnChangeData) => {
108+
private handleSelectUndelayed = (
109+
e: React.SyntheticEvent<HTMLElement>,
110+
{ value }: BasePickerOnChangeData,
111+
) => {
112+
107113
const {
108114
hour,
109115
minute,

0 commit comments

Comments
 (0)