@forter/chart
Advanced tools
Comparing version 5.37.2 to 5.37.3
@@ -6,2 +6,13 @@ # Change Log | ||
## [5.37.3](https://github.com/forter/web-components/compare/@forter/chart@5.37.2...@forter/chart@5.37.3) (2023-07-23) | ||
### Bug Fixes | ||
* **chart:** fix x axis for last 24 ([623239f](https://github.com/forter/web-components/commit/623239f)) | ||
## [5.37.2](https://github.com/forter/web-components/compare/@forter/chart@5.37.1...@forter/chart@5.37.2) (2023-07-23) | ||
@@ -8,0 +19,0 @@ |
@@ -50,3 +50,3 @@ import { merge } from 'lodash-es'; | ||
if (diff < hour) { | ||
if (diff < hour || diff === day) { | ||
return 'minute'; | ||
@@ -53,0 +53,0 @@ } |
{ | ||
"name": "@forter/chart", | ||
"version": "5.37.2", | ||
"version": "5.37.3", | ||
"description": "chart from Forter Components", | ||
@@ -61,3 +61,3 @@ "author": "Forter Developers", | ||
}, | ||
"gitHead": "692c227e021c9ebed3aa3550f493cf4f0f5e5e70" | ||
"gitHead": "1efed01a49a5bdf94b1f287b1da62f50bd26f5ec" | ||
} |
@@ -36,3 +36,3 @@ import { merge } from 'lodash-es'; | ||
const diff = max - min; | ||
if (diff < hour) { | ||
if (diff < hour || diff === day) { | ||
return 'minute'; | ||
@@ -39,0 +39,0 @@ } |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
376126