Skip to content

Commit

Permalink
Merge pull request #1196 from merico-dev/1195-yaxismininterval-of-car…
Browse files Browse the repository at this point in the history
…tesian-is-wrong-when-all-numbers-are-string-typed-zero

1195 yaxismininterval of cartesian is wrong when all numbers are string typed zero
  • Loading branch information
GerilLeto authored Sep 20, 2023
2 parents 93ba7eb + c194c22 commit 2cfc4e0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devtable/api",
"version": "10.34.7",
"version": "10.34.8",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion dashboard/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devtable/dashboard",
"version": "10.34.7",
"version": "10.34.8",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function getReduceIntervalNeeds(series: PartialSeriesConfType[]) {
Object.entries(datas).forEach(([index, data]) => {
const min = _.minBy(data) ?? 0;
const max = _.maxBy(data) ?? 0;
if (min === 0 && max === 0) {
if (min == 0 && max == 0) {
ret[index] = 1;
}
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devtable/root",
"version": "10.34.7",
"version": "10.34.8",
"private": true,
"workspaces": [
"api",
Expand Down
2 changes: 1 addition & 1 deletion settings-form/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devtable/settings-form",
"version": "10.34.7",
"version": "10.34.8",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@devtable/website",
"private": true,
"license": "Apache-2.0",
"version": "10.34.7",
"version": "10.34.8",
"scripts": {
"dev": "vite",
"preview": "vite preview"
Expand Down

0 comments on commit 2cfc4e0

Please sign in to comment.