Skip to content

Commit 8f96eab

Browse files
committed
v1.8.8
1 parent 959445c commit 8f96eab

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

build/date-picker.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-multi-date-picker",
3-
"version": "1.8.7",
3+
"version": "1.8.8",
44
"description": "a simple React datepicker component for work with gregorian, persian, arabic and indian calendars",
55
"main": "./build/index.js",
66
"types": "index.d.ts",

src/components/date_picker/date_picker.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,10 @@ function DatePicker(
103103
a.style.width = "10px"
104104
b.style.width = "5px"
105105

106-
div.append(a)
107-
div.append(b)
106+
div.appendChild(a)
107+
div.appendChild(b)
108108

109-
datePickerRef.current.append(div)
109+
datePickerRef.current.appendChild(div)
110110

111111
isRTL = a.getBoundingClientRect().left - b.getBoundingClientRect().left !== 0
112112

0 commit comments

Comments
 (0)