Skip to content

Commit

Permalink
#4891 | Ram | fix nested group not showing for analysis page
Browse files Browse the repository at this point in the history
  • Loading branch information
sreeramanathan committed Feb 5, 2016
1 parent 2ac19ab commit c0b66a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mangrove/datastore/user_questionnaire_preference.py
Expand Up @@ -69,7 +69,7 @@ def get_user_questionnaire_preference(manager, user_id, project_id):

def _convert_field_to_preference(manager, field, preferences, project_id, key=None, is_group_child=False, parent_field_types=[]):
if is_group_child:
key = key+'-'+field.code
key = project_id + '_' + field.parent_field_code + '-' + field.code
elif key:
key = key + '.' + field.code

Expand Down

0 comments on commit c0b66a4

Please sign in to comment.