galaxy-dist commit 247c19db7f89: fix for the Lab access bug caused by the last commit .
# HG changeset patch -- Bitbucket.org # Project galaxy-dist # URL http://bitbucket.org/galaxy/galaxy-dist/overview # User rc # Date 1288299278 14400 # Node ID 247c19db7f8987d9da245bc750043188d4a7c373 # Parent 522c99a05163c1816e9fe3be4c0b4ad05bff3ea0 fix for the Lab access bug caused by the last commit . --- a/templates/webapps/galaxy/base_panels.mako +++ b/templates/webapps/galaxy/base_panels.mako @@ -84,7 +84,7 @@ [ 'Find Samples', h.url_for( controller='/requests', action='find_samples_index' ) ], [ 'Help', app.config.get( "lims_doc_url", "http://main.g2.bx.psu.edu/u/rkchak/p/sts" ), "galaxy_main" ] ] - tab( "lab", "Lab", None, menu_options=menu_options, visible=( trans.user and ( trans.user.requests or trans.user.accessible_request_types() ) ) ) + tab( "lab", "Lab", None, menu_options=menu_options, visible=( trans.user and ( trans.user.requests or trans.user.accessible_request_types( trans ) ) ) ) %> ## Visualization menu.
participants (1)
-
commits-noreply@bitbucket.org