Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/staging' into integration
Browse files Browse the repository at this point in the history
  • Loading branch information
RenatoBrittoAraujo committed Sep 14, 2021
2 parents 1d87533 + 1def8eb commit be3c8ad
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/Components/home/LandingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ const AppLandingPage = () => {
<p style={{ color: "#eee", marginTop: -15 }}>
Analysing FCS files has never been easier
</p>
<NavLink
{/* <NavLink
to={
"/" +
(process.env.REACT_APP_NO_WORKSPACES === "true"
Expand All @@ -221,7 +221,7 @@ const AppLandingPage = () => {
? "Start Analysing"
: "Test Red Matter"}
</Button>
</NavLink>{" "}
</NavLink>{" "} */}
{!isLoggedIn ? (
<div>
<div>
Expand Down
4 changes: 2 additions & 2 deletions src/Components/users/Register.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ const Register = (props: any) => {
</div>
)}

<Grid
{/* <Grid
container
justify="center"
alignItems="center"
Expand All @@ -294,7 +294,7 @@ const Register = (props: any) => {
});
}}
/>
</Grid>
</Grid> */}

<Grid
justify="center"
Expand Down
2 changes: 1 addition & 1 deletion src/services/FlowJoParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const ParseFlowJoJson = async (flowJoJson: any, downloadedFiles: any) => {
let plot: Plot;
let sampleUri = samples[i]["DataSet"]["_attributes"]["uri"];
let sampleUrlArray = sampleUri.split("/");
let sampleName = sampleUri[sampleUrlArray.length - 1];
let sampleName = sampleUrlArray[sampleUrlArray.length - 1];
sampleName = sampleName.replace("%20", "");
let transformations = samples[i]["Transformations"];
let channelsInfo: any = [];
Expand Down

0 comments on commit be3c8ad

Please sign in to comment.