Skip to content

Commit

Permalink
Fix checked value setting for private mode
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Dec 9, 2017
1 parent c1e29a2 commit 0444aa6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -57,7 +57,7 @@ ${render_tool_shed_repository_actions( repository=repository, changeset_revision
if can_browse:
# Initialize Private check box.
private_check_box_name = '%s%sprivate' % ( component.name, STRSEP )
private_check_box = CheckboxField( name=private_check_box_name, checked=component_review.private )
private_check_box = CheckboxField( name=private_check_box_name, value=component_review.private )
# Initialize star rating.
rating_name = '%s%srating' % ( component.name, STRSEP )
Expand Down

0 comments on commit 0444aa6

Please sign in to comment.