Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Frontend #266

Merged
merged 2 commits into from
Jan 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/components/Cohorts/Cohorts.js
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,7 @@ function Cohorts (props) {
)}

{trigger && noCollectionEvents && showGraphs && (
<h10>NO GRAPHICS AVAILABLE FOR THE SELECTED COHORTS</h10>
<h10>NO GRAPHICS AVAILABLE FOR THE SELECTED COHORT!</h10>
)}
{showGraphs === true && dataAvailable === false && timeOut === true && (
<div>
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/components/GenomicVariations/VariantsResults.js
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ function VariantsResults (props) {
}

var jsonData1 = {}
console.log(props.sequenceSubmitted)

if (props.sequenceSubmitted) {
jsonData1 = {
meta: {
Expand Down Expand Up @@ -519,7 +519,7 @@ function VariantsResults (props) {
)}
{show3 && error && <h3>&nbsp; {error} </h3>}

{show2 && (
{show2 && logInRequired === false && !error && (
<div>
<TableResultsVariant
show={'count'}
Expand All @@ -531,7 +531,7 @@ function VariantsResults (props) {
</div>
)}

{show1 && (
{show1 && logInRequired === false && !error &&(
<div className='containerTableResults'>
<TableResultsVariant
show={'boolean'}
Expand Down
2 changes: 0 additions & 2 deletions frontend/src/components/Layout/Layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ import BiosamplesResults from '../Biosamples/BiosamplesResults'

import React, { useState, useEffect } from 'react'

import OutsideClickHandler from 'react-outside-click-handler'

import Switch from '@mui/material/Switch'
import MultiSwitch from 'react-multi-switch-toggle'

Expand Down