Skip to content

Commit

Permalink
fix: textarea size on add book form
Browse files Browse the repository at this point in the history
make sure the summary and personal notes text areas accept the same number of chars as the database
  • Loading branch information
bayang committed Jun 16, 2022
1 parent 3b50e2f commit 98ace19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/jelu-ui/src/components/AddBook.vue
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ let displayDatepicker = computed(() => {
>
<o-input
v-model="form.summary"
maxlength="200"
maxlength="50000"
type="textarea"
class="textarea focus:textarea-accent"
/>
Expand Down Expand Up @@ -749,7 +749,7 @@ let displayDatepicker = computed(() => {
>
<o-input
v-model="form.personalNotes"
maxlength="200"
maxlength="5000"
type="textarea"
class="textarea focus:textarea-accent"
/>
Expand Down

0 comments on commit 98ace19

Please sign in to comment.