@forter/chart
Advanced tools
Comparing version 5.37.0 to 5.37.1
@@ -6,2 +6,13 @@ # Change Log | ||
## [5.37.1](https://github.com/forter/web-components/compare/@forter/chart@5.37.0...@forter/chart@5.37.1) (2023-07-23) | ||
### Bug Fixes | ||
* **chart:** x axis min based for last 24 hours ([b09bf55](https://github.com/forter/web-components/commit/b09bf55)) | ||
# [5.37.0](https://github.com/forter/web-components/compare/@forter/chart@5.36.1...@forter/chart@5.37.0) (2023-07-03) | ||
@@ -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.0", | ||
"version": "5.37.1", | ||
"description": "chart from Forter Components", | ||
@@ -61,3 +61,3 @@ "author": "Forter Developers", | ||
}, | ||
"gitHead": "acf9f6be46b51cbe2c37fb21db379a5c53fcf151" | ||
"gitHead": "3f34ffb5f048aac501cc08fea8f8bfe7d997b7b4" | ||
} |
@@ -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
375701