Skip to content

Commit

Permalink
Merge pull request #267 from EGA-archive/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
Gemma Milla authored Jan 16, 2024
2 parents 50c2977 + a771e58 commit 4d1a94a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
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

0 comments on commit 4d1a94a

Please sign in to comment.