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

remove underlined spaces #506

Merged
merged 1 commit into from
Mar 20, 2024
Merged
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
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
Loading