Skip to content
This repository has been archived by the owner on Jan 20, 2023. It is now read-only.

Commit

Permalink
Merge pull request #2 from tmtung144/main
Browse files Browse the repository at this point in the history
fix countInput not exits
  • Loading branch information
martin-ro authored May 15, 2022
2 parents 995ede4 + 07b3186 commit 2e4bd12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/components/wrapper.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
])
<div class="flex-1 relative"
x-data="{
count: $refs.countInput.value.length,
count: $refs.countInput ? $refs.countInput.value.length : 0,
min: $el.dataset.min,
max: $el.dataset.max,
get remaining() {
Expand Down

0 comments on commit 2e4bd12

Please sign in to comment.