Skip to content

Commit

Permalink
Merge pull request #506 from KPMP/KPMP-5216_remove-spaces
Browse files Browse the repository at this point in the history
remove underlined spaces
  • Loading branch information
rlreamy authored Mar 20, 2024
2 parents 50c20db + d45e796 commit 2adeb6d
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions src/components/ExpressionTables/ExpressionXCellType.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { Component } from 'react';
import { Grid, TableColumnResizing, TableHeaderRow,
import { Grid, TableColumnResizing, TableHeaderRow,
Table, TableSummaryRow, TableBandHeader} from '@devexpress/dx-react-grid-bootstrap4';
import { Col, Row, UncontrolledTooltip, Spinner } from "reactstrap";
import { formatTissueType, formatNumberToPrecision } from "../../helpers/Utils"
Expand Down Expand Up @@ -72,7 +72,7 @@ class ExpressionXCellType extends Component {
title: <span>CELL CLUSTER (<i>predicted state</i>)</span>,
name: 'clusterName',
getCellValue: row => this.parseClusterName(row)

},
{
title: <span># CELLS IN<br />CELL CLUSTER</span>,
Expand Down Expand Up @@ -151,7 +151,7 @@ class ExpressionXCellType extends Component {

getColumnBands() {
return [
{
{
title: "CELL CLUSTER VS ALL OTHERS",
children: [
{ columnName: 'foldChange'},
Expand All @@ -166,7 +166,7 @@ class ExpressionXCellType extends Component {
render() {
const BandCell = ({ children, tableRow, tableColumn, column, ...restProps }) => {
return (
<TableBandHeader.Cell {...restProps} column={column}
<TableBandHeader.Cell {...restProps} column={column}
className="text-center cluster_v_others cluster_v_others_container">
{children}
</TableBandHeader.Cell>
Expand All @@ -181,7 +181,7 @@ class ExpressionXCellType extends Component {
} else if (this.props.data.length === 0) {
return (<div></div>)
} else {
const totalSummaryItems = [
const totalSummaryItems = [
{ columnName: 'cellCount', type: 'sum' }
]
return (
Expand Down Expand Up @@ -226,11 +226,9 @@ class ExpressionXCellType extends Component {
<sup>4</sup>transitional: Represented by an intermediate state showing markers of cells sharing the same parental lineage. &nbsp;
</small>
<p></p>
{this.props.dataType === "sn" ?
{this.props.dataType === "sn" ?
<small>
For more information about the cell type, cluster, and state definitions, see the following publication:
<a target="_blank" rel="noreferrer" href="https://rdcu.be/dx5m9"> Nature 619, 585–594 (2023) </a>
and <a target="_blank" rel='noreferrer' href="https://github.com/KPMP/Cell-State-Atlas-2022/">GitHub pipelines</a>
For more information about the cell type, cluster, and state definitions, see the following publication: <a target="_blank" rel="noreferrer" href="https://rdcu.be/dx5m9">Nature 619, 585–594 (2023)</a> and <a target="_blank" rel='noreferrer' href="https://github.com/KPMP/Cell-State-Atlas-2022/">github pipelines</a>
</small> :
<small>
For more information about the cell type, cluster, and state definitions, see the following publication: <a target="_blank" rel="noreferrer" href="https://rdcu.be/dx5m9">Nature 619, 585–594 (2023)</a>
Expand Down

0 comments on commit 2adeb6d

Please sign in to comment.