diff --git a/package-lock.json b/package-lock.json index 778ac644..d133b572 100644 --- a/package-lock.json +++ b/package-lock.json @@ -25,6 +25,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", @@ -5126,7 +5127,9 @@ } }, "node_modules/autoprefixer": { - "version": "10.4.14", + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.5.tgz", + "integrity": "sha512-Fvd8yCoA7lNX/OUllvS+aS1I7WRBclGXsepbvT8ZaPgrH24rgXpZzF0/6Hh3ZEkwg+0AES/Osd196VZmYoEFtw==", "funding": [ { "type": "opencollective", @@ -5137,10 +5140,9 @@ "url": "https://tidelift.com/funding/github/npm/autoprefixer" } ], - "license": "MIT", "dependencies": { - "browserslist": "^4.21.5", - "caniuse-lite": "^1.0.30001464", + "browserslist": "^4.20.2", + "caniuse-lite": "^1.0.30001332", "fraction.js": "^4.2.0", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", diff --git a/package.json b/package.json index 931ad0c2..08f873be 100644 --- a/package.json +++ b/package.json @@ -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", @@ -52,6 +53,9 @@ "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" @@ -59,7 +63,7 @@ "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", diff --git a/src/components/ExpressionTables/ExpressionXCellType.js b/src/components/ExpressionTables/ExpressionXCellType.js index 58ca4c64..fba918c9 100644 --- a/src/components/ExpressionTables/ExpressionXCellType.js +++ b/src/components/ExpressionTables/ExpressionXCellType.js @@ -69,7 +69,6 @@ class ExpressionXCellType extends Component { }, { title: CLUSTER (predicted state), - // Footer: "TOTAL CELLS: ", name: 'clusterName', getCellValue: row => this.parseClusterName(row) @@ -77,7 +76,6 @@ class ExpressionXCellType extends Component { { title: # CELLS IN
CLUSTER
, name: 'cellCount', - // Footer: (sum(this.props.data, "cellCount")), getCellValue: row => row.cellCount ? row.cellCount : 0 }, { @@ -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' },