Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: chartjs/Chart.js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1f22c9ed2998a3584aa8ad974a99f1aaa0aa17fa
Choose a base ref
..
head repository: chartjs/Chart.js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 31e4a94d595d7fcac67f01be894003e0c82d53b3
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 samples/scales/time/financial.html
2 changes: 1 addition & 1 deletion samples/scales/time/financial.html
Original file line number Diff line number Diff line change
@@ -72,7 +72,7 @@
if (outsideMarketHours(date)) {
date = date.clone().add(8 - date.isoWeekday(), 'day');
if ((unit == 'second' || unit == 'minute' || unit == 'hour')) {
date = date.clone().hour(9).minute(30).second(0);
date = date.hour(9).minute(30).second(0);
}
}
data.push(randomBar(date, data.length > 0 ? data[data.length - 1].y : 30));