Skip to content

Commit

Permalink
Merge branch 'release/0.7.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
oliveryh committed Mar 28, 2022
2 parents 4d8a99a + 2678515 commit 77c1880
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clear-habits-client",
"version": "0.7.0",
"version": "0.7.1",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
4 changes: 4 additions & 0 deletions client/src/components/Entry.vue
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,8 @@
v-model="editedEstimatedTime"
mask="time"
:rules="['time']"
fill-mask
debounce="300"
label="Estimated Time"
outlined
class="q-pb-none"
Expand Down Expand Up @@ -232,6 +234,8 @@
v-model="editedEntryTime"
mask="time"
:rules="['time']"
fill-mask
debounce="300"
label="Tracked Time"
outlined
>
Expand Down
2 changes: 2 additions & 0 deletions client/src/components/EntryList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@
v-model="newEntryEstimatedTime"
mask="time"
:rules="['time']"
fill-mask
debounce="300"
@keydown.enter="createEntryWithTaskLocal"
>
<template v-slot:append>
Expand Down
6 changes: 6 additions & 0 deletions client/src/components/PlannerPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,8 @@
v-model="newEntryEstimatedTime"
mask="time"
:rules="['time']"
fill-mask
debounce="300"
@keydown.enter="createEntryLocal"
>
<template v-slot:append>
Expand Down Expand Up @@ -321,6 +323,8 @@
v-model="editedEstimatedTime"
mask="time"
:rules="['time']"
fill-mask
debounce="300"
label="Estimated Time"
outlined
class="q-pb-none"
Expand Down Expand Up @@ -349,6 +353,8 @@
v-model="editedEntryTime"
mask="time"
:rules="['time']"
fill-mask
debounce="300"
label="Tracked Time"
outlined
>
Expand Down

0 comments on commit 77c1880

Please sign in to comment.