Skip to content

Commit

Permalink
KPMP-4608: remove warnings from build
Browse files Browse the repository at this point in the history
  • Loading branch information
rlreamy committed Aug 29, 2023
1 parent 336bd24 commit d7a3539
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
10 changes: 6 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"@popperjs/core": "^2.11.8",
"ag-grid-community": "25.3.0",
"ag-grid-react": "^25.3.0",
"autoprefixer": "10.4.5",
"axios": "^0.24.0",
"bootstrap": "5.2.3",
"bootstrap-5-css-only": "5.1.3",
Expand Down Expand Up @@ -52,14 +53,17 @@
"redux-thunk": "2.3.0",
"string-strip-html": "^8.5.0"
},
"overrides": {
"autoprefixer": "10.4.5"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"sass": "1.64.0"
},
"scripts": {
"start": "npm-run-all --max-old-space-size=8192 -p watch-css start-js",
"build": "GENERATE_SOURCEMAP=false && npm-run-all --max-old-space-size=10240 build-css build-js",
"test": "react-scripts test --passWithNoTests",
"test": "GENERATE_SOURCEMAP=false && react-scripts test --passWithNoTests",
"eject": "react-scripts eject",
"start-js": "react-scripts start",
"build-js": "react-scripts --max-old-space-size=10240 build",
Expand Down
4 changes: 1 addition & 3 deletions src/components/ExpressionTables/ExpressionXCellType.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,13 @@ class ExpressionXCellType extends Component {
},
{
title: <span>CLUSTER (<i>predicted state</i>)</span>,
// Footer: "TOTAL CELLS: ",
name: 'clusterName',
getCellValue: row => this.parseClusterName(row)

},
{
title: <span># CELLS IN<br />CLUSTER</span>,
name: 'cellCount',
// Footer: (sum(this.props.data, "cellCount")),
getCellValue: row => row.cellCount ? row.cellCount : 0
},
{
Expand Down Expand Up @@ -128,7 +126,7 @@ class ExpressionXCellType extends Component {
return [
{ columnName: 'cluster', width: 106, align: 'left'},
{ columnName: 'clusterName', width: 546, align: 'left'},
{ columnName: 'cellCount', width: 'auto', align: 'left' },
{ columnName: 'cellCount', width: 110, align: 'left' },
{ columnName: 'avgExp', width: 'auto', align: 'left' },
{ columnName: 'pct1', width: 'auto', align: 'left' },
{ columnName: 'foldChange', width: 'auto', align: 'left' },
Expand Down

0 comments on commit d7a3539

Please sign in to comment.