Skip to content

Commit 37bd6ee

Browse files
Merge pull request #1093 from Chia-Network/develop
Release 1.2.3
2 parents 5d6700f + e875bcb commit 37bd6ee

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/auto-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
echo "Tag does not exist. Creating and pushing tag"
4343
rm -f CHANGELOG.md
4444
npx conventional-changelog-cli -p angular -i CHANGELOG.md -s -r 0
45-
changes=$(npx conventional-changelog-cli -r 1)
45+
changes=$(npx conventional-changelog-cli -r 1 | tail -n +2)
4646
git add CHANGELOG.md
4747
sed -i -e '/<s>/d' CHANGELOG.md
4848
git commit -m "Updating changelog for $version"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cadt-ui",
3-
"version": "1.2.2",
3+
"version": "1.2.3",
44
"private": true,
55
"author": "Chia Network Inc. <[email protected]>",
66
"homepage": "./",

src/components/blocks/YearSelect.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const YearSelect = withTheme(
7979
mask="____"
8080
RegExp="/^d{4}$/"
8181
views={['year']}
82-
value={yearValue ? dayjs(yearValue) : null}
82+
value={yearValue ? dayjs(yearValue.toString(), 'YYYY') : null}
8383
onChange={newValue =>
8484
newValue ? onChange(newValue.$y) : onChange(null)
8585
}

0 commit comments

Comments
 (0)