Changeset - 3301fb05b494
[Not reviewed]
beta
0 1 0
Marcin Kuzminski - 12 years ago 2013-06-05 19:12:16
marcin@python-works.com
Improve validation on dashboard items field
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
rhodecode/model/forms.py
Show inline comments
 
@@ -285,7 +285,7 @@ def ApplicationVisualisationForm():
 

	
 
        rhodecode_repository_fields = v.StringBoolean(if_missing=False)
 
        rhodecode_lightweight_journal = v.StringBoolean(if_missing=False)
 
        rhodecode_dashboard_items = v.UnicodeString()
 
        rhodecode_dashboard_items = v.Int(min=5, not_empty=True)
 
        rhodecode_show_version = v.StringBoolean(if_missing=False)
 

	
 
    return _ApplicationVisualisationForm
0 comments (0 inline, 0 general)