##// END OF EJS Templates
Improve validation on dashboard items field
marcink -
r3949:3301fb05 beta
parent child Browse files
Show More
@@ -285,7 +285,7 b' def ApplicationVisualisationForm():'
285 285
286 286 rhodecode_repository_fields = v.StringBoolean(if_missing=False)
287 287 rhodecode_lightweight_journal = v.StringBoolean(if_missing=False)
288 rhodecode_dashboard_items = v.UnicodeString()
288 rhodecode_dashboard_items = v.Int(min=5, not_empty=True)
289 289 rhodecode_show_version = v.StringBoolean(if_missing=False)
290 290
291 291 return _ApplicationVisualisationForm
General Comments 0
You need to be logged in to leave comments. Login now