Skip to content

Commit

Permalink
feat: Allow typing into date input fields during book event editing. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
DarthNerdus authored and bayang committed Apr 25, 2024
1 parent 8a85494 commit 0557fb4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/jelu-ui/src/components/ReadingEventModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ const deleteEvent = () => {
<datepicker
v-model="currentEvent.startDate"
class="input input-primary"
:typeable="true"
:clearable="false"
>
<template #clear="{ onClear }">
Expand Down Expand Up @@ -155,6 +156,7 @@ const deleteEvent = () => {
<datepicker
v-model="currentEvent.endDate"
class="input input-primary"
:typeable="true"
:clearable="true"
>
<template #clear="{ onClear }">
Expand Down Expand Up @@ -244,6 +246,7 @@ const deleteEvent = () => {
v-model="currentCreateEvent.startDate"
class="input input-primary"
:clearable="true"
:typeable="true"
>
<template #clear="{ onClear }">
<button @click="onClear">
Expand Down Expand Up @@ -276,6 +279,7 @@ const deleteEvent = () => {
v-model="currentCreateEvent.eventDate"
class="input input-primary"
:clearable="true"
:typeable="true"
>
<template #clear="{ onClear }">
<button @click="onClear">
Expand Down

0 comments on commit 0557fb4

Please sign in to comment.