Skip to content

Commit c51d07f

Browse files
committed
Fix extra symbol
1 parent 0d6a4fd commit c51d07f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scripts/common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ function getDateValueFromString(value) {
137137
return new Date(arr[2], arr[1] - 1, arr[0]);
138138
}
139139
if (value.indexOf('/') !== -1)
140-
arr = value.split('/');ч
140+
arr = value.split('/');
141141
return new Date(arr[2], arr[0] - 1, arr[1]);
142142
}
143143

0 commit comments

Comments
 (0)