Skip to content
This repository has been archived by the owner on Oct 6, 2021. It is now read-only.

Commit

Permalink
Comment out the Reports page
Browse files Browse the repository at this point in the history
Grouped selection is turned off for this workflow.
  • Loading branch information
eatyourgreens committed Aug 24, 2016
1 parent 027d70b commit 6ac2eeb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/main.cjsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ init = require './init'
config = require './config'
React = require 'react'
ReactDOM = require 'react-dom'
ChooseSubjectSet = require './choose-subject-set'
# ChooseSubjectSet = require './choose-subject-set'
Classifier = require './classifier'
Profile = require './profile'
Page = require './page'
Expand Down Expand Up @@ -52,7 +52,7 @@ Main = React.createClass
@setBackground @state.project if @state.project?
ReactDOM.render <Profile project={@state.project} workflow={@state.workflow} user={@state.user} api={@client} />, document.querySelector '#profile'
ReactDOM.render <UserStatus user={@state.user} auth={@auth} onSignOut={@signOut} />, document.querySelector '#user-status'
ReactDOM.render <ChooseSubjectSet workflow={@state.workflow} onChange={@changeSubjectSet} />, document.querySelector '#reports'
# ReactDOM.render <ChooseSubjectSet workflow={@state.workflow} onChange={@changeSubjectSet} />, document.querySelector '#reports'
ReactDOM.render <Page project={@state.project} url_key='science_case' />, document.querySelector '#about'
ReactDOM.render <Classifier project={@state.project} workflow={@state.workflow} user={@state.user} api={@client} talk={@talk} subject_set={@state.subject_set} />, document.querySelector '#classify'

Expand Down
8 changes: 4 additions & 4 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<header id="main-header" role="banner" class="readymade-site-header">
<ul class="readymade-site-links" role="navigation">
<li><a href="#home" class="readymade-site-link">Diagnosis London</a></li>
<li><a href="#reports" class="readymade-site-link">Reports</a></li>
<!-- <li><a href="#reports" class="readymade-site-link">Reports</a></li> -->
<li><a href="#classify" class="readymade-site-link">Classify</a></li>
<li><a aria-hidden="true" href="#profile" class="readymade-site-link">Profile</a></li>
<li><a href="#about" class="readymade-site-link">About</a></li>
Expand All @@ -45,9 +45,9 @@
<div class="readymade-home-page" id="home">

</div>
<div class="readymade-classifier readymade-classify-page" id="reports">
</div>
<!-- <div class="readymade-classifier readymade-classify-page" id="reports">
</div> -->
<div class="readymade-classifier readymade-classify-page" id="classify">

</div>
Expand Down

0 comments on commit 6ac2eeb

Please sign in to comment.