Skip to content

Commit

Permalink
Only turn length limitor to red when you EXCEED the limit. Meeting is…
Browse files Browse the repository at this point in the history
… fine.
  • Loading branch information
jackmcdade committed Nov 18, 2020
1 parent 7ce0200 commit 0c939fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/components/LengthLimiter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default {
computed: {
limitReached() {
return this.currentLength >= this.limit;
return this.currentLength > this.limit;
},
currentLength() {
return (this.value) ? this.value.length : 0
Expand Down

0 comments on commit 0c939fa

Please sign in to comment.