diff options
author | 2021-02-18 08:45:30 +0200 | |
---|---|---|
committer | 2021-02-18 08:45:30 +0200 | |
commit | bc9d7b91aa5992d2634dc9c4c88b8d9ec9e383e5 (patch) | |
tree | 52b512255b6f0d04201a5ef9d0181254ffa858de | |
parent | Revert change of gathering checkbox values (diff) |
Mark range and radio valid after change
-rw-r--r-- | src/components/Question.tsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/components/Question.tsx b/src/components/Question.tsx index 9a15a07..0af745e 100644 --- a/src/components/Question.tsx +++ b/src/components/Question.tsx @@ -116,6 +116,11 @@ class RenderedQuestion extends React.Component<QuestionProp> { } } break; + + case "radio": + this.setPublicState("valid", true); + this.setPublicState("error", ""); + break; } } |