Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A text field with a numeric input mask and min/max settings doesn't allow deleting the value #8501

Closed
JaneSjs opened this issue Jul 3, 2024 · 0 comments · Fixed by #8522
Closed
Assignees
Milestone

Comments

@JaneSjs
Copy link
Contributor

JaneSjs commented Jul 3, 2024

Please test the following survey JSON:

{
 "pages": [
  {
   "name": "page1",
   "elements": [
    {
     "type": "text",
     "name": "question1",
     "defaultValue": 4,
     "maskType": "numeric",
     "maskSettings": {
      "min": 2,
      "max": 10
     }
    }
   ]
  }
 ]
}

A numeric entry doesn't allow removing the entered value.

2024-07-03_12-00-28.mp4

Expected behavior: a user should be able to remove the entered value.

@OlgaLarina OlgaLarina added this to the v1.11.6 milestone Jul 9, 2024
@RomanTsukanov RomanTsukanov changed the title Text field with Numeric input mask and min/max settings doesn't allow resetting / removing a value A text field with a numeric input mask and min/max settings doesn't allow deleting the value Jul 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment