Skip to content

Commit

Permalink
Merge pull request #97 from permafrost06/develop
Browse files Browse the repository at this point in the history
merge develop to release v3.2.0
  • Loading branch information
permafrost06 authored Jan 15, 2024
2 parents c780f7a + 774ceeb commit 071ddf8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "diagman",
"version": "3.1.1",
"version": "3.2.0",
"private": true,
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "Diagman",
"version": "3.1.1"
"version": "3.2.0"
},
"tauri": {
"allowlist": {
Expand Down
6 changes: 5 additions & 1 deletion src/views/patients/PatientForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,11 @@ const filterRefs = (all: Array<any>, search: string): Array<any> => {
:value="
toEdit
? new Date(parseInt(toEdit.delivery_date))
: ''
: new Date(
new Date().getFullYear(),
new Date().getMonth(),
new Date().getDate() + 7
)
"
/>
</SimpleBlankInput>
Expand Down

0 comments on commit 071ddf8

Please sign in to comment.