mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 16:51:11 +03:00
Made survey text fields min length default to 0 instead of 1
This commit is contained in:
parent
68cfc71899
commit
5cb403dffd
@ -204,11 +204,11 @@ export default
|
||||
scope.default_textarea = "";
|
||||
scope.default_password = "" ;
|
||||
scope.choices = "";
|
||||
scope.text_min = 1;
|
||||
scope.text_min = 0;
|
||||
scope.text_max = 1024 ;
|
||||
scope.textarea_min = 1;
|
||||
scope.textarea_min = 0;
|
||||
scope.textarea_max = 4096;
|
||||
scope.password_min = 1;
|
||||
scope.password_min = 0;
|
||||
scope.password_max = 32;
|
||||
scope.int_min = 0;
|
||||
scope.int_max = 100;
|
||||
|
Loading…
Reference in New Issue
Block a user