Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
leermao committed May 28, 2024
1 parent 6bb047f commit f6db16e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.1.9 (2024-5-28)
## 0.1.10 (2024-5-28)

- fix: bug bash issue

Expand Down
2 changes: 1 addition & 1 deletion blocklet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ repository:
type: git
url: git+https://github.com/blocklet/create-blocklet.git
specVersion: 1.2.8
version: 0.1.9
version: 0.1.10
logo: logo.png
files:
- component.yml
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "todo-list",
"version": "0.1.9",
"version": "0.1.10",
"scripts": {
"dev": "blocklet dev",
"lint": "tsc --noEmit && eslint src api/src --ext .mjs,.js,.jsx,.ts,.tsx",
Expand Down
6 changes: 1 addition & 5 deletions src/pages/todo-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -228,11 +228,7 @@ function TodoList() {
<DateCalendar
value={dayjs(todo.todoTime || '')}
onChange={(newValue) => {
if (newValue) {
setTodo((r) => ({ ...r, todoTime: dayjs(newValue).format('YYYY-MM-DD HH:mm') }));
}

state.close();
setTodo((r) => ({ ...r, todoTime: dayjs(newValue).format('YYYY-MM-DD HH:mm') }));
}}
/>
</DemoContainer>
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.9
0.1.10

0 comments on commit f6db16e

Please sign in to comment.