Skip to content

Commit

Permalink
fix case for re-editing after error state
Browse files Browse the repository at this point in the history
  • Loading branch information
heapwolf committed Sep 17, 2023
1 parent 4f6a92e commit 9ff6c6e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@socketsupply/components",
"version": "14.0.8",
"version": "14.0.9",
"description": "Example components",
"type": "module",
"scripts": {
Expand Down
2 changes: 2 additions & 0 deletions textarea/index.js
Expand Up @@ -217,6 +217,8 @@ export class TonicTextarea extends Tonic {

if (this.props.required && !value) {
return this.setInvalid('Value Required')
} else if (this.props.required) {
this.setValid()
}

if (!this.props.pattern) {
Expand Down

0 comments on commit 9ff6c6e

Please sign in to comment.